Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / i2c / aspeed,i2c.yaml
blob5b9bd2feda3b73a6c1826fb70f6721edae3c058e
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/i2c/aspeed,i2c.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: ASPEED I2C on the AST24XX, AST25XX, and AST26XX SoCs
9 maintainers:
10   - Rayn Chen <rayn_chen@aspeedtech.com>
12 allOf:
13   - $ref: /schemas/i2c/i2c-controller.yaml#
15 properties:
16   compatible:
17     enum:
18       - aspeed,ast2400-i2c-bus
19       - aspeed,ast2500-i2c-bus
20       - aspeed,ast2600-i2c-bus
22   reg:
23     minItems: 1
24     items:
25       - description: address offset and range of bus
26       - description: address offset and range of bus buffer
28   interrupts:
29     maxItems: 1
31   clocks:
32     maxItems: 1
33     description:
34       root clock of bus, should reference the APB
35       clock in the second cell
37   resets:
38     maxItems: 1
40   bus-frequency:
41     minimum: 500
42     maximum: 4000000
43     default: 100000
44     description: frequency of the bus clock in Hz defaults to 100 kHz when not
45       specified
47 required:
48   - reg
49   - compatible
50   - clocks
51   - resets
53 unevaluatedProperties: false
55 examples:
56   - |
57     #include <dt-bindings/clock/aspeed-clock.h>
58     i2c@40 {
59       #address-cells = <1>;
60       #size-cells = <0>;
61       compatible = "aspeed,ast2500-i2c-bus";
62       reg = <0x40 0x40>;
63       clocks = <&syscon ASPEED_CLK_APB>;
64       resets = <&syscon ASPEED_RESET_I2C>;
65       bus-frequency = <100000>;
66       interrupts = <0>;
67       interrupt-parent = <&i2c_ic>;
68     };