blob: 59bb0d7e8ab33eb273a70c369dd1ec52b78a9a80 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# 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
7title: Bluetooth Controller Common Properties
8
9maintainers:
10 - Marcel Holtmann <marcel@holtmann.org>
11 - Johan Hedberg <johan.hedberg@gmail.com>
12 - Luiz Augusto von Dentz <luiz.dentz@gmail.com>
13
14properties:
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
27additionalProperties: true
28
29...