symbian-qemu-0.9.1-12/dtc-trunk/tests/base01.dts
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 / {
       
     2 	model = "SomeModel";
       
     3 	compatible = "Nothing";
       
     4 	#address-cells = <2>;
       
     5 	#size-cells = <2>;
       
     6 
       
     7         memory@0 {
       
     8                 device_type = "memory";
       
     9 		reg = <00000000 00000000 00000000 20000000>;
       
    10         };
       
    11 
       
    12 	cpus {
       
    13 		#address-cells = <1>;
       
    14 		#size-cells = <0>;
       
    15 		d10 = <d# 10>;		// hex: 0xa
       
    16 		d23 = <d# 23>;		// hex: 0x17
       
    17 		b101 = <b# 101>;	// hex: 0x5
       
    18 		o17 = <o# 17>;		// hex: 0xf
       
    19 		hd00d = <h# d00d>;	// hex: 0xd00d
       
    20 
       
    21 		//   hex:  0x4d2    0x163e      0x2334    0xd80
       
    22 		stuff = <d# 1234    d# 5678    d# 9012    d# 3456>;
       
    23 
       
    24 
       
    25 		bad-d-1 = <d# abc123>;		// Hrm. 0
       
    26 		bad-d-2 = <d# 123456789012345>;
       
    27 		bad-o-1 = <o# 891>;
       
    28 		bad-o-2 = <o# 123456123456>;
       
    29 	};
       
    30 
       
    31 };