Skip to content

Commit 9c148cb

Browse files
committed
Merge tag 'ti-driver-soc-for-v6.11' of https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux into soc/drivers
TI SoC driver updates for v6.11 - Update TISCI protocol URL link which was dead - socinfo: Add j721E SR 2.0 detection support - MAINTAINER list additions: ti,pruss.yaml and ti,j721e-system-controller.yaml - pm33xx: log statement improvement - knav_qmss: minor data structure optimization * tag 'ti-driver-soc-for-v6.11' of https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux: dt-bindings: soc: ti: Move ti,j721e-system-controller.yaml to soc/ti MAINTAINERS: Add entry for ti,pruss.yaml to TI KEYSTONE MULTICORE NAVIGATOR DRIVERS soc: ti: k3-socinfo: Add J721E SR2.0 soc: ti: knav_qmss: Constify struct knav_range_ops firmware: ti_sci: fix TISCI protocol URL link dt-bindings: ti: fix TISCI protocol URL link soc: ti: pm33xx: Fix missing newlines in log statements Link: https://lore.kernel.org/r/20240705151449.s4rngkehjn73favn@stream Signed-off-by: Arnd Bergmann <[email protected]>
2 parents 9f51147 + b87a1cb commit 9c148cb

File tree

12 files changed

+14
-13
lines changed

12 files changed

+14
-13
lines changed

Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ description: |
2020
initialized early into boot process and provides services to Operating Systems
2121
on multiple processors including ones running Linux.
2222
23-
See http://processors.wiki.ti.com/index.php/TISCI for protocol definition.
23+
See https://software-dl.ti.com/tisci/esd/latest/index.html for protocol definition.
2424
2525
The TI-SCI node describes the Texas Instrument's System Controller entity node.
2626
This parent node may optionally have additional children nodes which describe

Documentation/devicetree/bindings/clock/ti,sci-clk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ properties:
3636

3737
The second cell should contain the clock ID.
3838

39-
Please see http://processors.wiki.ti.com/index.php/TISCI for
39+
Please see https://software-dl.ti.com/tisci/esd/latest/index.html for
4040
protocol documentation for the values to be used for different devices.
4141

4242
additionalProperties: false

Documentation/devicetree/bindings/reset/ti,sci-reset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ properties:
3737
The second cell should contain the reset mask corresponding to the device
3838
used by system controller.
3939

40-
Please see http://processors.wiki.ti.com/index.php/TISCI for
40+
Please see https://software-dl.ti.com/tisci/esd/latest/index.html for
4141
protocol documentation for the values to be used for different devices.
4242

4343

Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ properties:
4040
TI_SCI_PD_SHARED - Allows the device to be shared by multiple hosts.
4141
Please refer to dt-bindings/soc/ti,sci_pm_domain.h for the definitions.
4242

43-
Please see http://processors.wiki.ti.com/index.php/TISCI for
43+
Please see https://software-dl.ti.com/tisci/esd/latest/index.html for
4444
protocol documentation for the values to be used for different devices.
4545

4646
additionalProperties: false

Documentation/devicetree/bindings/mfd/ti,j721e-system-controller.yaml renamed to Documentation/devicetree/bindings/soc/ti/ti,j721e-system-controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
33
%YAML 1.2
44
---
5-
$id: http://devicetree.org/schemas/mfd/ti,j721e-system-controller.yaml#
5+
$id: http://devicetree.org/schemas/soc/ti/ti,j721e-system-controller.yaml#
66
$schema: http://devicetree.org/meta-schemas/core.yaml#
77

88
title: TI J721e System Controller Registers R/W
@@ -19,7 +19,7 @@ description: |
1919
and access the registers directly.
2020
2121
maintainers:
22-
- Kishon Vijay Abraham I <kishon@ti.com>
22+
- Kishon Vijay Abraham I <kishon@kernel.org>
2323
- Roger Quadros <[email protected]>
2424

2525
properties:

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22531,6 +22531,7 @@ L: [email protected]
2253122531
L: [email protected] (moderated for non-subscribers)
2253222532
S: Maintained
2253322533
T: git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
22534+
F: Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml
2253422535
F: drivers/pmdomain/ti/omap_prm.c
2253522536
F: drivers/soc/ti/*
2253622537

drivers/firmware/ti_sci.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Communication protocol with TI SCI hardware
66
* The system works in a message response protocol
7-
* See: http://processors.wiki.ti.com/index.php/TISCI for details
7+
* See: https://software-dl.ti.com/tisci/esd/latest/index.html for details
88
*
99
* Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
1010
*/

drivers/soc/ti/k3-socinfo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static const struct k3_soc_id {
6161
};
6262

6363
static const char * const j721e_rev_string_map[] = {
64-
"1.0", "1.1",
64+
"1.0", "1.1", "2.0",
6565
};
6666

6767
static int

drivers/soc/ti/knav_qmss.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ struct knav_range_info {
333333
void *queue_base_inst;
334334
unsigned flags;
335335
struct list_head list;
336-
struct knav_range_ops *ops;
336+
const struct knav_range_ops *ops;
337337
struct knav_acc_info acc_info;
338338
struct knav_acc_channel *acc;
339339
unsigned num_irqs;

drivers/soc/ti/knav_qmss_acc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ static int knav_acc_free_range(struct knav_range_info *range)
450450
return 0;
451451
}
452452

453-
static struct knav_range_ops knav_acc_range_ops = {
453+
static const struct knav_range_ops knav_acc_range_ops = {
454454
.set_notify = knav_acc_set_notify,
455455
.init_queue = knav_acc_init_queue,
456456
.open_queue = knav_acc_open_queue,

0 commit comments

Comments
 (0)