brintos

brintos / linux-shallow public Read only

0
0
Text · 876 B · 40e81a5 Raw
32 lines · plain
1Lantiq SoC ASC serial controller2 3Required properties:4- compatible : Should be "lantiq,asc"5- reg : Address and length of the register set for the device6- interrupts: the 3 (tx rx err) interrupt numbers. The interrupt specifier7  depends on the interrupt-parent interrupt controller.8 9Optional properties:10- clocks: Should contain frequency clock and gate clock11- clock-names: Should be "freq" and "asc"12 13Example:14 15asc0: serial@16600000 {16	compatible = "lantiq,asc";17	reg = <0x16600000 0x100000>;18	interrupt-parent = <&gic>;19	interrupts = <GIC_SHARED 103 IRQ_TYPE_LEVEL_HIGH>,20		<GIC_SHARED 105 IRQ_TYPE_LEVEL_HIGH>,21		<GIC_SHARED 106 IRQ_TYPE_LEVEL_HIGH>;22	clocks = <&cgu CLK_SSX4>, <&cgu GCLK_UART>;23	clock-names = "freq", "asc";24};25 26asc1: serial@e100c00 {27	compatible = "lantiq,asc";28	reg = <0xE100C00 0x400>;29	interrupt-parent = <&icu0>;30	interrupts = <112 113 114>;31};32