mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
04606ccc84
- Definitions were added to core library - A example was added to designware-core.txt Documentation that shows how the slave can be setup using DTS SLAVE related definitions were added to the core of the controller. Signed-off-by: Luis Oliveira <lolivei@synopsys.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
* Synopsys DesignWare I2C
|
|
|
|
Required properties :
|
|
|
|
- compatible : should be "snps,designware-i2c"
|
|
- reg : Offset and length of the register set for the device
|
|
- interrupts : <IRQ> where IRQ is the interrupt number.
|
|
|
|
Recommended properties :
|
|
|
|
- clock-frequency : desired I2C bus clock frequency in Hz.
|
|
|
|
Optional properties :
|
|
- i2c-sda-hold-time-ns : should contain the SDA hold time in nanoseconds.
|
|
This option is only supported in hardware blocks version 1.11a or newer.
|
|
|
|
- i2c-scl-falling-time-ns : should contain the SCL falling time in nanoseconds.
|
|
This value which is by default 300ns is used to compute the tLOW period.
|
|
|
|
- i2c-sda-falling-time-ns : should contain the SDA falling time in nanoseconds.
|
|
This value which is by default 300ns is used to compute the tHIGH period.
|
|
|
|
Examples :
|
|
|
|
i2c@f0000 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
compatible = "snps,designware-i2c";
|
|
reg = <0xf0000 0x1000>;
|
|
interrupts = <11>;
|
|
clock-frequency = <400000>;
|
|
};
|
|
|
|
i2c@1120000 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
compatible = "snps,designware-i2c";
|
|
reg = <0x1120000 0x1000>;
|
|
interrupt-parent = <&ictl>;
|
|
interrupts = <12 1>;
|
|
clock-frequency = <400000>;
|
|
i2c-sda-hold-time-ns = <300>;
|
|
i2c-sda-falling-time-ns = <300>;
|
|
i2c-scl-falling-time-ns = <300>;
|
|
};
|
|
|
|
i2c@1120000 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
reg = <0x2000 0x100>;
|
|
clock-frequency = <400000>;
|
|
clocks = <&i2cclk>;
|
|
interrupts = <0>;
|
|
|
|
eeprom@64 {
|
|
compatible = "linux,slave-24c02";
|
|
reg = <0x40000064>;
|
|
};
|
|
};
|