Skip to content

Commit c966c71

Browse files
Ayush1325gregkh
authored andcommitted
dt-bindings: net: Add ti,cc1352p7
Add DT bindings for Texas Instruments Simplelink CC1352P7 wireless MCU BeaglePlay has CC1352P7 co-processor connected to the main AM62 (running Linux) over UART. In the BeagleConnect Technology, CC1352 is responsible for handling 6LoWPAN communication with beagleconnect freedom nodes as well as their discovery. Signed-off-by: Ayush Singh <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Reviewed-by: Nishanth Menon <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 2b10715 commit c966c71

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/net/ti,cc1352p7.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Texas Instruments Simplelink CC1352P7 wireless MCU
8+
9+
description:
10+
The CC1352P7 MCU can be connected via SPI or UART.
11+
12+
maintainers:
13+
- Ayush Singh <[email protected]>
14+
15+
properties:
16+
compatible:
17+
const: ti,cc1352p7
18+
19+
clocks:
20+
items:
21+
- description: high-frequency main system (MCU and peripherals) clock
22+
- description: low-frequency system clock
23+
24+
clock-names:
25+
items:
26+
- const: sclk_hf
27+
- const: sclk_lf
28+
29+
reset-gpios:
30+
maxItems: 1
31+
32+
vdds-supply: true
33+
34+
required:
35+
- compatible
36+
37+
additionalProperties: false
38+
39+
examples:
40+
- |
41+
#include <dt-bindings/gpio/gpio.h>
42+
43+
serial {
44+
mcu {
45+
compatible = "ti,cc1352p7";
46+
clocks = <&sclk_hf 0>, <&sclk_lf 25>;
47+
clock-names = "sclk_hf", "sclk_lf";
48+
reset-gpios = <&pio 35 GPIO_ACTIVE_LOW>;
49+
vdds-supply = <&vdds>;
50+
};
51+
};

MAINTAINERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8991,6 +8991,12 @@ F: drivers/staging/greybus/sdio.c
89918991
F: drivers/staging/greybus/spi.c
89928992
F: drivers/staging/greybus/spilib.c
89938993

8994+
GREYBUS BEAGLEPLAY DRIVERS
8995+
M: Ayush Singh <[email protected]>
8996+
L: [email protected] (moderated for non-subscribers)
8997+
S: Maintained
8998+
F: Documentation/devicetree/bindings/net/ti,cc1352p7.yaml
8999+
89949000
GREYBUS SUBSYSTEM
89959001
M: Johan Hovold <[email protected]>
89969002
M: Alex Elder <[email protected]>

0 commit comments

Comments
 (0)