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/sound/omap-mcbsp.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 * Texas Instruments OMAP2+ McBSP module
    2 
    3 Required properties:
    4 - compatible: "ti,omap2420-mcbsp" for McBSP on OMAP2420
    5               "ti,omap2430-mcbsp" for McBSP on OMAP2430
    6               "ti,omap3-mcbsp" for McBSP on OMAP3
    7               "ti,omap4-mcbsp" for McBSP on OMAP4 and newer SoC
    8 - reg: Register location and size, for OMAP4+ as an array:
    9        <MPU access base address, size>,
   10        <L3 interconnect address, size>;
   11 - reg-names: Array of strings associated with the address space
   12 - interrupts: Interrupt numbers for the McBSP port, as an array in case the
   13               McBSP IP have more interrupt lines:
   14         <OCP compliant irq>,
   15         <TX irq>,
   16         <RX irq>;
   17 - interrupt-names: Array of strings associated with the interrupt numbers
   18 - ti,buffer-size: Size of the FIFO on the port (OMAP2430 and newer SoC)
   19 - ti,hwmods: Name of the hwmod associated to the McBSP port
   20 
   21 Example:
   22 
   23 mcbsp2: mcbsp@49022000 {
   24         compatible = "ti,omap3-mcbsp";
   25         reg = <0x49022000 0xff>,
   26               <0x49028000 0xff>;
   27         reg-names = "mpu", "sidetone";
   28         interrupts = <0 17 0x4>, /* OCP compliant interrupt */
   29                      <0 62 0x4>, /* TX interrupt */
   30                      <0 63 0x4>, /* RX interrupt */
   31                      <0 4 0x4>;  /* Sidetone */
   32         interrupt-names = "common", "tx", "rx", "sidetone";
   33         interrupt-parent = <&intc>;
   34         ti,buffer-size = <1280>;
   35         ti,hwmods = "mcbsp2";
   36 };

Cache object: 8ba9ed2cefd6a2c12b38b7873a85f4ff


[ 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.