dt-bindings: mfd: Add Bitmain BM1880 System Controller

Add the already in use Bitmain BM1880 System Controller binding. All the
child nodes already have schemas.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Link: https://patch.msgid.link/20251215212639.3320085-1-robh@kernel.org
Signed-off-by: Lee Jones <lee@kernel.org>
master
Rob Herring (Arm) 2025-12-15 15:26:38 -06:00 committed by Lee Jones
parent d3fcf276b5
commit 541b1e867e
1 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,66 @@
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/mfd/bitmain,bm1880-sctrl.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Bitmain BM1880 System Controller
maintainers:
- Manivannan Sadhasivam <mani@kernel.org>
properties:
compatible:
items:
- const: bitmain,bm1880-sctrl
- const: syscon
- const: simple-mfd
reg:
maxItems: 1
ranges: true
'#address-cells':
const: 1
'#size-cells':
const: 1
patternProperties:
'^pinctrl@[0-9a-f]+$':
type: object
additionalProperties: true
properties:
compatible:
contains:
const: bitmain,bm1880-pinctrl
'^clock-controller@[0-9a-f]+$':
type: object
additionalProperties: true
properties:
compatible:
contains:
const: bitmain,bm1880-clk
'^reset-controller@[0-9a-f]+$':
type: object
additionalProperties: true
properties:
compatible:
contains:
const: bitmain,bm1880-reset
required:
- compatible
- reg
- ranges
- '#address-cells'
- '#size-cells'
additionalProperties: false
...