[PATCH 1/2 v2] powerpc/dts: Add dts for p1020rdb-pc

Scott Wood scottwood at freescale.com
Wed Feb 1 05:55:15 EST 2012


On 01/31/2012 01:06 AM, Zhicheng Fan wrote:
> +&lbc {
> +	nor at 0,0 {
> +		#address-cells = <1>;
> +		#size-cells = <1>;
> +		compatible = "cfi-flash";
> +		reg = <0x0 0x0 0x1000000>;
> +		bank-width = <2>;
> +		device-width = <1>;
> +
> +		partition at 0 {
> +			/* This location must not be altered  */
> +			/* 256KB for Vitesse 7385 Switch firmware */
> +			reg = <0x0 0x00040000>;
> +			label = "NOR (RO) Vitesse-7385 Firmware";
> +			read-only;
> +		};
> +
> +		partition at 40000 {
> +			/* 256KB for DTB Image */
> +			reg = <0x00040000 0x00040000>;
> +			label = "NOR (RO) DTB Image";
> +			read-only;
> +		};
> +
> +		partition at 80000 {
> +			/* 3.5 MB for Linux Kernel Image */
> +			reg = <0x00080000 0x00380000>;
> +			label = "NOR (RO) Linux Kernel Image";
> +			read-only;
> +		};
> +
> +		partition at 400000 {
> +			/* 11MB for JFFS2 based Root file System */
> +			reg = <0x00400000 0x00b00000>;
> +			label = "NOR (RW) JFFS2 Root File System";
> +		};
> +
> +		partition at f00000 {
> +			/* This location must not be altered  */
> +			/* 512KB for u-boot Bootloader Image */
> +			/* 512KB for u-boot Environment Variables */
> +			reg = <0x00f00000 0x00100000>;
> +			label = "NOR (RO) U-Boot Image";
> +			read-only;
> +		};
> +	};
> +
> +	nand at 1,0 {
> +		#address-cells = <1>;
> +		#size-cells = <1>;
> +		compatible = "fsl,p1020-fcm-nand",
> +			     "fsl,elbc-fcm-nand";
> +		reg = <0x1 0x0 0x40000>;
> +
> +		partition at 0 {
> +			/* This location must not be altered  */
> +			/* 1MB for u-boot Bootloader Image */
> +			reg = <0x0 0x00100000>;
> +			label = "NAND (RO) U-Boot Image";
> +			read-only;
> +		};
> +
> +		partition at 100000 {
> +			/* 1MB for DTB Image */
> +			reg = <0x00100000 0x00100000>;
> +			label = "NAND (RO) DTB Image";
> +			read-only;
> +		};
> +
> +		partition at 200000 {
> +			/* 4MB for Linux Kernel Image */
> +			reg = <0x00200000 0x00400000>;
> +			label = "NAND (RO) Linux Kernel Image";
> +			read-only;
> +		};
> +
> +		partition at 600000 {
> +			/* 4MB for Compressed Root file System Image */
> +			reg = <0x00600000 0x00400000>;
> +			label = "NAND (RO) Compressed RFS Image";
> +			read-only;
> +		};
> +
> +		partition at a00000 {
> +			/* 7MB for JFFS2 based Root file System */
> +			reg = <0x00a00000 0x00700000>;
> +			label = "NAND (RW) JFFS2 Root File System";
> +		};
> +
> +		partition at 1100000 {
> +			/* 15MB for JFFS2 based Root file System */
> +			reg = <0x01100000 0x00f00000>;
> +			label = "NAND (RW) Writable User area";
> +		};
> +	};

Please remove (RO) and (RW) -- this duplicates information provided by
the read-only property.

Please only mark partitions read-only when they could brick the board if
overwritten.  Things like the Linux kernel, RFS, and DTB should not be
read-only.

> +/include/ "p1020rdb-pc.dts"
> +
> +/ {
> +	model = "fsl,P1020RDB-PC";
> +	compatible = "fsl,P1020RDB-PC", "fsl,MPC85XXRDB-CAMP";

Eliminate fsl,MPC85XXRDB-CAMP.  Specify pic-no-reset on the mpic node
instead.

-Scott



More information about the Linuxppc-dev mailing list