Path: blob/main/sys/contrib/device-tree/Bindings/i2c/i2c-exynos5.txt
48378 views
* Samsung's High Speed I2C controller12The Samsung's High Speed I2C controller is used to interface with I2C devices3at various speeds ranging from 100khz to 3.4Mhz.45Required properties:6- compatible: value should be.7-> "samsung,exynos5-hsi2c", (DEPRECATED)8for i2c compatible with HSI2C available9on Exynos5250 and Exynos5420 SoCs.10-> "samsung,exynos5250-hsi2c", for i2c compatible with HSI2C available11on Exynos5250 and Exynos5420 SoCs.12-> "samsung,exynos5260-hsi2c", for i2c compatible with HSI2C available13on Exynos5260 SoCs.14-> "samsung,exynos7-hsi2c", for i2c compatible with HSI2C available15on Exynos7 SoCs.1617- reg: physical base address of the controller and length of memory mapped18region.19- interrupts: interrupt number to the cpu.20- #address-cells: always 1 (for i2c addresses)21- #size-cells: always 02223- Pinctrl:24- pinctrl-0: Pin control group to be used for this controller.25- pinctrl-names: Should contain only one value - "default".2627Optional properties:28- clock-frequency: Desired operating frequency in Hz of the bus.29-> If not specified, the bus operates in fast-speed mode at30at 100khz.31-> If specified, the bus operates in high-speed mode only if the32clock-frequency is >= 1Mhz.3334Example:3536hsi2c@12ca0000 {37compatible = "samsung,exynos5250-hsi2c";38reg = <0x12ca0000 0x100>;39interrupts = <56>;40clock-frequency = <100000>;4142pinctrl-0 = <&i2c4_bus>;43pinctrl-names = "default";4445#address-cells = <1>;46#size-cells = <0>;4748s2mps11_pmic@66 {49compatible = "samsung,s2mps11-pmic";50reg = <0x66>;51};52};535455