The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/serial/nvidia,tegra194-tcu.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 NVIDIA Tegra Combined UART (TCU)
    2 
    3 The TCU is a system for sharing a hardware UART instance among multiple
    4 systems within the Tegra SoC. It is implemented through a mailbox-
    5 based protocol where each "virtual UART" has a pair of mailboxes, one
    6 for transmitting and one for receiving, that is used to communicate
    7 with the hardware implementing the TCU.
    8 
    9 Required properties:
   10 - name : Should be tcu
   11 - compatible
   12     Array of strings
   13     One of:
   14     - "nvidia,tegra194-tcu"
   15 - mbox-names:
   16     "rx" - Mailbox for receiving data from hardware UART
   17     "tx" - Mailbox for transmitting data to hardware UART
   18 - mboxes: Mailboxes corresponding to the mbox-names.
   19 
   20 This node is a mailbox consumer. See the following files for details of
   21 the mailbox subsystem, and the specifiers implemented by the relevant
   22 provider(s):
   23 
   24 - .../mailbox/mailbox.txt
   25 - .../mailbox/nvidia,tegra186-hsp.txt
   26 
   27 Example bindings:
   28 -----------------
   29 
   30 tcu: tcu {
   31         compatible = "nvidia,tegra194-tcu";
   32         mboxes = <&hsp_top0 TEGRA_HSP_MBOX_TYPE_SM 0>,
   33                  <&hsp_aon TEGRA_HSP_MBOX_TYPE_SM 1>;
   34         mbox-names = "rx", "tx";
   35 };

Cache object: 4e82fb44d924af3ca1d35b3fc4f3f92a


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.