Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8-rc4 29 lines 922 B view raw
1* ARM Primecell Peripherals 2 3ARM, Ltd. Primecell peripherals have a standard id register that can be used to 4identify the peripheral type, vendor, and revision. This value can be used for 5driver matching. 6 7Required properties: 8 9- compatible : should be a specific name for the peripheral and 10 "arm,primecell". The specific name will match the ARM 11 engineering name for the logic block in the form: "arm,pl???" 12 13Optional properties: 14 15- arm,primecell-periphid : Value to override the h/w value with 16- clocks : From common clock binding. First clock is phandle to clock for apb 17 pclk. Additional clocks are optional and specific to those peripherals. 18- clock-names : From common clock binding. Shall be "apb_pclk" for first clock. 19 20Example: 21 22serial@fff36000 { 23 compatible = "arm,pl011", "arm,primecell"; 24 arm,primecell-periphid = <0x00341011>; 25 clocks = <&pclk>; 26 clock-names = "apb_pclk"; 27 28}; 29