mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 19:54:03 +08:00
5bdfba29f1
This is some amount of work left/forgot from device tree conversion. Instead of checking cpu_is_xxx to determine the controller type, the driver should use platform_device_id, which should match the device tree compatible string. The patch changes the driver to use platform_device_id rather than cpu_is_xxx to determine the controller type/version. It also updates the platform code and device tree source accordingly. As the result, mach/hardware.h inclusion gets removed from the driver. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Arnd Bergmann <arnd@arndb.de> Cc: Wolfram Sang <w.sang@pengutronix.de> Cc: linux-i2c@vger.kernel.org
26 lines
732 B
Plaintext
26 lines
732 B
Plaintext
* Freescale Inter IC (I2C) and High Speed Inter IC (HS-I2C) for i.MX
|
|
|
|
Required properties:
|
|
- compatible : Should be "fsl,<chip>-i2c"
|
|
- reg : Should contain I2C/HS-I2C registers location and length
|
|
- interrupts : Should contain I2C/HS-I2C interrupt
|
|
|
|
Optional properties:
|
|
- clock-frequency : Constains desired I2C/HS-I2C bus clock frequency in Hz.
|
|
The absence of the propoerty indicates the default frequency 100 kHz.
|
|
|
|
Examples:
|
|
|
|
i2c@83fc4000 { /* I2C2 on i.MX51 */
|
|
compatible = "fsl,imx51-i2c", "fsl,imx21-i2c";
|
|
reg = <0x83fc4000 0x4000>;
|
|
interrupts = <63>;
|
|
};
|
|
|
|
i2c@70038000 { /* HS-I2C on i.MX51 */
|
|
compatible = "fsl,imx51-i2c", "fsl,imx21-i2c";
|
|
reg = <0x70038000 0x4000>;
|
|
interrupts = <64>;
|
|
clock-frequency = <400000>;
|
|
};
|