i2c-brcmstb.txt 819 B

12345678910111213141516171819202122232425262728
  1. Broadcom stb bsc iic master controller
  2. Required properties:
  3. - compatible: should be "brcm,brcmstb-i2c"
  4. - clock-frequency: 32-bit decimal value of iic master clock freqency in Hz
  5. valid values are 375000, 390000, 187500, 200000
  6. 93750, 97500, 46875 and 50000
  7. - reg: specifies the base physical address and size of the registers
  8. Optional properties :
  9. - interrupt-parent: specifies the phandle to the parent interrupt controller
  10. this one is cascaded from
  11. - interrupts: specifies the interrupt number, the irq line to be used
  12. - interrupt-names: Interrupt name string
  13. Example:
  14. bsca: i2c@f0406200 {
  15. clock-frequency = <390000>;
  16. compatible = "brcm,brcmstb-i2c";
  17. interrupt-parent = <&irq0_intc>;
  18. reg = <0xf0406200 0x58>;
  19. interrupts = <0x18>;
  20. interrupt-names = "upg_bsca";
  21. };