2012-07-13 21:44:22 +08:00
|
|
|
Device tree configuration for i2c-ocores
|
|
|
|
|
|
|
|
Required properties:
|
|
|
|
- compatible : "opencores,i2c-ocores"
|
|
|
|
- reg : bus address start and address range size of device
|
|
|
|
- interrupts : interrupt number
|
|
|
|
- clock-frequency : frequency of bus clock in Hz
|
|
|
|
- #address-cells : should be <1>
|
|
|
|
- #size-cells : should be <0>
|
|
|
|
|
2012-07-13 21:44:23 +08:00
|
|
|
Optional properties:
|
|
|
|
- reg-shift : device register offsets are shifted by this value
|
|
|
|
- regstep : deprecated, use reg-shift above
|
|
|
|
|
2012-07-13 21:44:22 +08:00
|
|
|
Example:
|
|
|
|
|
|
|
|
i2c0: ocores@a0000000 {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
compatible = "opencores,i2c-ocores";
|
|
|
|
reg = <0xa0000000 0x8>;
|
|
|
|
interrupts = <10>;
|
|
|
|
clock-frequency = <20000000>;
|
|
|
|
|
2012-07-13 21:44:23 +08:00
|
|
|
reg-shift = <0>; /* 8 bit registers */
|
|
|
|
|
2012-07-13 21:44:22 +08:00
|
|
|
dummy@60 {
|
|
|
|
compatible = "dummy";
|
|
|
|
reg = <0x60>;
|
|
|
|
};
|
|
|
|
};
|