Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) Some properties contain an ordered list of 1 or more datum which are
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) normally accessed by index.  However, some devices will have multiple
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) values which are more naturally accessed by name.  Device nodes can
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) include a supplemental property for assigning names to each of the list
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) items.  The names property consists of a list of strings in the same
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) order as the data in the resource property.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) The following supplemental names properties are defined.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) Resource Property	Supplemental Names Property
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) -----------------	---------------------------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) reg			reg-names
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) clocks			clock-names
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) interrupts		interrupt-names
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) Usage:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) The -names property must be used in conjunction with the normal resource
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) property. If not it will be ignored.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) Examples:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) l4-abe {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 	compatible = "simple-bus";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 	#address-cells = <2>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 	#size-cells = <1>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 	ranges = <0 0 0x48000000 0x00001000>, /* MPU path */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 		 <1 0 0x49000000 0x00001000>; /* L3 path */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 	mcasp {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 		compatible = "ti,mcasp";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 		reg = <0 0x10 0x10>, <0 0x20 0x10>,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) 		      <1 0x10 0x10>, <1 0x20 0x10>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) 		reg-names = "mpu", "dat",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 			    "dma", "dma_dat";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) 		interrupts = <11>, <12>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) 		interrupt-names = "rx", "tx";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 	};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) 	timer {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) 		compatible = "ti,timer";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) 		reg = <0 0x40 0x10>, <1 0x40 0x10>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) 		reg-names = "mpu", "dma";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) 	};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) usb {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) 	compatible = "ti,usb-host";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) 	reg = <0x4a064000 0x800>, <0x4a064800 0x200>,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50) 	      <0x4a064c00 0x200>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51) 	reg-names = "config", "ohci", "ehci";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52) 	interrupts = <14>, <15>;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 53) 	interrupt-names = "ohci", "ehci";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 54) };