cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

spear-usb.txt (611B)


      1ST SPEAr SoC USB controllers:
      2-----------------------------
      3
      4EHCI:
      5-----
      6
      7Required properties:
      8- compatible: "st,spear600-ehci"
      9- interrupts: Should contain the EHCI interrupt
     10
     11Example:
     12
     13	ehci@e1800000 {
     14		compatible = "st,spear600-ehci", "usb-ehci";
     15		reg = <0xe1800000 0x1000>;
     16		interrupt-parent = <&vic1>;
     17		interrupts = <27>;
     18	};
     19
     20
     21OHCI:
     22-----
     23
     24Required properties:
     25- compatible: "st,spear600-ohci"
     26- interrupts: Should contain the OHCI interrupt
     27
     28Example:
     29
     30	ohci@e1900000 {
     31		compatible = "st,spear600-ohci", "usb-ohci";
     32		reg = <0xe1800000 0x1000>;
     33		interrupt-parent = <&vic1>;
     34		interrupts = <26>;
     35	};