> > +   };
> > +
> > +   nand@1,0 {
> > +           #address-cells = <1>;
> > +           #size-cells = <1>;
> > +           compatible = "fsl,ifc-nand";
> > +           reg = <0x1 0x0 0x4000>;
> > +
> > +           partition@0 {
> > +                   /* This location must not be altered  */
> > +                   /* 3MB for u-boot Bootloader Image */
> > +                   reg = <0x0 0x00300000>;
> > +                   label = "NAND U-Boot Image";
> > +                   read-only;
> > +           };
> > +
> > +           partition@300000 {
> > +                   /* 1MB for DTB Image */
> > +                   reg = <0x00300000 0x00100000>;
> > +                   label = "NAND DTB Image";
> > +           };
> > +
> > +           partition@400000 {
> > +                   /* 8MB for Linux Kernel Image */
> > +                   reg = <0x00400000 0x00800000>;
> > +                   label = "NAND Linux Kernel Image";
> > +           };
> > +
> > +           partition@c00000 {
> > +                   /* Rest space for Root file System Image */
> > +                   reg = <0x00c00000 0x07400000>;
> > +                   label = "NAND RFS Image";
> > +           };
> > +   };
> > +};
> 
> Please keep partition definitions out of the dts file, as has been recently
> requested of other boards.  You can use U-Boot to create the partition nodes
> based on the mtdparts variable, or you can use the Linux mtdparts command line
> option.
Ok. Will remove these in V2 of patch
> 
> -Scott
_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to