Hello;<br> <br> While working on i2c support, I've decided to update to a new kernel. In the process of doing this, I'm not sure I've properly configured the MURAM node to my device tree (i.e. serial is broken again). Also, does this, in any way, change the way I offset the early debug transmit descriptor address?
<br><br> I tried looking at your cpm tree on <a href="http://git.buserror.net">git.buserror.net</a>, but it seems you've taken it down?<br><br>-Alan<br><br>soc@e0000000 {<br> #address-cells = <1>;<br> #size-cells = <1>;
<br> device_type = "soc";<br> compatible = "fsl,mpc8248", "fsl,pq2-soc";<br> ranges = <00000000 e0000000 00053000>;<br><br> // Temporary -- will go away once kernel uses ranges for get_immrbase().
<br> reg = <e0000000 00053000>;<br><br> cpm@119c0 {<br> #address-cells = <1>;<br> #size-cells = <1>;<br> compatible = "fsl,mpc8248-cpm", "fsl,cpm2";
<br> reg = <119c0 30>;<br> ranges;<br><br> muram@0 {<br> #address-cells = <1>;<br> #size-cells = <1>;<br> ranges = <0 0 10000>;
<br><br> data@0 {<br> compatible = "fsl,cpm-muram-data";<br> reg = <0 2000 9800 800>;<br> };<br> };<br><br> brg@119f0
{<br> compatible = "fsl,mpc8272-brg",<br> "fsl,cpm2-brg",<br> "fsl,cpm-brg";<br> reg = <119f0 10 115f0 10>;
<br> };<br> /* Monitor port/SMC1 */<br> serial@11a80 {<br> device_type = "serial";<br> compatible = "fsl,mpc8248-smc-uart",<br> "fsl,cpm2-smc-uart";
<br> reg = <11a80 20 0 40>;<br> interrupts = <4 8>;<br> interrupt-parent = <&PIC>;<br> fsl,cpm-brg = <7>;<br> fsl,cpm-command = <1d000000>;
<br> };<br> /* "Serial" port/SCC1 */<br> serial@11a00 {<br> device_type = "serial";<br> compatible = "fsl,mpc8248-scc-uart",<br>
"fsl,cpm2-scc-uart";<br> reg = <11a00 20 8000 100>;<br> interrupts = <28 8>;<br> interrupt-parent = <&PIC>;
<br> fsl,cpm-brg = <1>;<br> fsl,cpm-command = <00800000>;<br> };<br> /* "Serial" port/SCC4 */<br> serial@11a60
{<br> device_type = "serial";<br> compatible = "fsl,mpc8248-scc-uart",<br> "fsl,cpm2-scc-uart";<br> reg = <11a60 20 8300 100>;
<br> interrupts = <2B 8>;<br> interrupt-parent = <&PIC>;<br> fsl,cpm-brg = <4>;<br> fsl,cpm-command = <0CE00000>;<br> };
<br><br> ethernet@11300 {<br> device_type = "network";<br> compatible = "fsl,mpc8248-fcc-enet",<br> "fsl,cpm2-fcc-enet";
<br> reg = <11300 20 8400 100 11390 1>;<br> local-mac-address = [ 00 00 00 00 00 00 ];<br> interrupts = <20 8>;<br> interrupt-parent = <&PIC>;
<br> phy-handle = <&PHY0>;<br> linux,network-index = <0>;<br> fsl,cpm-command = <12000300>;<br> };
<br><br> ethernet@11320 {<br> device_type = "network";<br> compatible = "fsl,mpc8248-fcc-enet",<br> "fsl,cpm2-fcc-enet";
<br> reg = <11320 20 8500 100 113b0 1>;<br> local-mac-address = [ 00 00 00 00 00 00 ];<br> interrupts = <21 8>;<br> interrupt-parent = <&PIC>;
<br> phy-handle = <&PHY1>;<br> linux,network-index = <1>;<br> fsl,cpm-command = <16200300>;<br> };
<br><br> usb@11b60 {<br> #address-cells = <1>;<br> #size-cells = <0>;<br> compatible = "fsl,mpc8248-usb",
<br> "fsl,cpm2-usb";<br> reg = <11b60 18 8b00 100>;<br> interrupt-parent = <&PIC>;<br> interrupts = <b 8>;
<br> fsl,cpm-command = <2e600000>;<br> };<br> i2c@11860 { <br> compatible = "fsl,mpc8248-i2c", <br> "fsl,cpm2-i2c",
<br> "fsl,cpm-i2c";<br> reg = <11860 20 3c80 30>;<br> interrupts = <1>;<br> interrupt-parent = <&PIC>;<br> fsl,cpm-command = <0010>;
<br> };<br><br> };<br><br>