1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/bus/aspeed,ast2600-ahbc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: ASPEED Advanced High-Performance Bus Controller (AHBC)
8
9maintainers:
10  - Neal Liu <neal_liu@aspeedtech.com>
11  - Chia-Wei Wang <chiawei_wang@aspeedtech.com>
12
13description: |
14  Advanced High-performance Bus Controller (AHBC) supports plenty of mechanisms
15  including a priority arbiter, an address decoder and a data multiplexer
16  to control the overall operations of Advanced High-performance Bus (AHB).
17
18properties:
19  compatible:
20    enum:
21      - aspeed,ast2600-ahbc
22
23  reg:
24    maxItems: 1
25
26required:
27  - compatible
28  - reg
29
30additionalProperties: false
31
32examples:
33  - |
34    ahbc@1e600000 {
35        compatible = "aspeed,ast2600-ahbc";
36        reg = <0x1e600000 0x100>;
37    };
38