Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) |
| 2 | %YAML 1.2 |
| 3 | --- |
| 4 | $id: http://devicetree.org/schemas/net/bluetooth/bluetooth-controller.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: Bluetooth Controller Common Properties |
| 8 | |
| 9 | maintainers: |
| 10 | - Marcel Holtmann <marcel@holtmann.org> |
| 11 | - Johan Hedberg <johan.hedberg@gmail.com> |
| 12 | - Luiz Augusto von Dentz <luiz.dentz@gmail.com> |
| 13 | |
| 14 | properties: |
| 15 | $nodename: |
| 16 | pattern: "^bluetooth(@.*)?$" |
| 17 | |
| 18 | local-bd-address: |
| 19 | $ref: /schemas/types.yaml#/definitions/uint8-array |
| 20 | maxItems: 6 |
| 21 | description: |
| 22 | Specifies the BD address that was uniquely assigned to the Bluetooth |
| 23 | device. Formatted with least significant byte first (little-endian), e.g. |
| 24 | in order to assign the address 00:11:22:33:44:55 this property must have |
| 25 | the value [55 44 33 22 11 00]. |
| 26 | |
| 27 | additionalProperties: true |
| 28 | |
| 29 | ... |