Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc8 36 lines 683 B view raw
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/i2c/apm,xgene-slimpro-i2c.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: APM X-Gene SLIMpro Mailbox I2C 8 9maintainers: 10 - Khuong Dinh <khuong@os.amperecomputing.com> 11 12description: 13 An I2C controller accessed over the "SLIMpro" mailbox. 14 15allOf: 16 - $ref: /schemas/i2c/i2c-controller.yaml# 17 18properties: 19 compatible: 20 const: apm,xgene-slimpro-i2c 21 22 mboxes: 23 maxItems: 1 24 25required: 26 - compatible 27 - mboxes 28 29unevaluatedProperties: false 30 31examples: 32 - | 33 i2c { 34 compatible = "apm,xgene-slimpro-i2c"; 35 mboxes = <&mailbox 0>; 36 };