-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document compatibility string to support I2C controller in GXP. Signed-off-by: Nick Hawkins <nick.hawkins@hpe.com> Signed-off-by: Wolfram Sang <wsa@kernel.org>
- Loading branch information
Nick Hawkins
authored and
Wolfram Sang
committed
Feb 17, 2023
1 parent
8c266d0
commit 681f87d
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/i2c/hpe,gxp-i2c.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: HPE GXP SoC I2C Controller | ||
|
||
maintainers: | ||
- Nick Hawkins <nick.hawkins@hpe.com> | ||
|
||
allOf: | ||
- $ref: /schemas/i2c/i2c-controller.yaml# | ||
|
||
properties: | ||
compatible: | ||
const: hpe,gxp-i2c | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clock-frequency: | ||
default: 100000 | ||
|
||
hpe,sysreg: | ||
$ref: /schemas/types.yaml#/definitions/phandle | ||
description: | ||
Phandle to the global status and enable interrupt registers shared | ||
between each I2C engine controller instance. It enables the I2C | ||
engine controller to act as both a master or slave by being able to | ||
arm and respond to interrupts from its engine. Each bit in the | ||
registers represent the respective bit position. | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
i2c@2600 { | ||
compatible = "hpe,gxp-i2c"; | ||
reg = <0x2500 0x70>; | ||
interrupts = <9>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
hpe,sysreg = <&sysreg_system_controller>; | ||
clock-frequency = <10000>; | ||
eeprom@50 { | ||
compatible = "atmel,24c128"; | ||
reg = <0x50>; | ||
}; | ||
}; |