blob: 11eb6e71ddd6b1f9d7de63e064b17ec1018b4024 [file] [log] [blame]
Laxman Dewangane9ea0962013-01-08 16:27:44 +05301NVIDIA Tegra20/Tegra30 high speed (DMA based) UART controller driver.
2
3Required properties:
4- compatible : should be "nvidia,tegra30-hsuart", "nvidia,tegra20-hsuart".
5- reg: Should contain UART controller registers location and length.
6- interrupts: Should contain UART controller interrupts.
7- nvidia,dma-request-selector : The Tegra DMA controller's phandle and
8 request selector for this UART controller.
Stephen Warrend8f64792013-11-06 14:00:25 -07009- clocks: Must contain one entry, for the module clock.
10 See ../clocks/clock-bindings.txt for details.
Laxman Dewangane9ea0962013-01-08 16:27:44 +053011
12Optional properties:
13- nvidia,enable-modem-interrupt: Enable modem interrupts. Should be enable
14 only if all 8 lines of UART controller are pinmuxed.
15
16Example:
17
18serial@70006000 {
19 compatible = "nvidia,tegra30-hsuart", "nvidia,tegra20-hsuart";
20 reg = <0x70006000 0x40>;
21 reg-shift = <2>;
22 interrupts = <0 36 0x04>;
23 nvidia,dma-request-selector = <&apbdma 8>;
24 nvidia,enable-modem-interrupt;
Stephen Warrend8f64792013-11-06 14:00:25 -070025 clocks = <&tegra_car 6>;
Laxman Dewangane9ea0962013-01-08 16:27:44 +053026 status = "disabled";
27};