-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'soc-arm-6.13' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/soc/soc Pull ARM SoC updates from Arnd Bergmann: "The SoC specific code updates for 6.13 are fairly minimal. One Broadcom SoC model gains automatic configuration for the debug uarg as we have on many other machines, the remaining changes are trivial cleanups" * tag 'soc-arm-6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: ARM: imx: Switch to new sys-off handler API ARM: bcm: brcmstb: Drop custom init_irq callback ARM: bcm: Support BCMBCA debug UART ARM: zynq: Remove unused zynq_slcr_init() declaration ASoC: samsung: Remove obsoleted declaration for s3c64xx_ac97_setup_gpio ARM: samsung: Remove obsoleted declaration for s3c_hwmon_set_platdata
- Loading branch information
Showing
8 changed files
with
43 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
// Copyright (C) 2024 Linus Walleij <[email protected]> | ||
|
||
#include <asm/mach/arch.h> | ||
#include <asm/mach/map.h> | ||
|
||
/* This is needed for LL-debug/earlyprintk/debug-macro.S */ | ||
static struct map_desc bcmbca_io_desc[] __initdata = { | ||
{ | ||
.virtual = CONFIG_DEBUG_UART_VIRT, | ||
.pfn = __phys_to_pfn(CONFIG_DEBUG_UART_PHYS), | ||
.length = SZ_4K, | ||
.type = MT_DEVICE, | ||
}, | ||
}; | ||
|
||
static void __init bcmbca_map_io(void) | ||
{ | ||
iotable_init(bcmbca_io_desc, ARRAY_SIZE(bcmbca_io_desc)); | ||
} | ||
|
||
static const char * const bcmbca_dt_compat[] = { | ||
/* TODO: Add other BCMBCA SoCs here to get debug UART support */ | ||
"brcm,bcm6846", | ||
NULL, | ||
}; | ||
|
||
DT_MACHINE_START(BCMBCA_DT, "BCMBCA Broadband Access Processors") | ||
.map_io = bcmbca_map_io, | ||
.dt_compat = bcmbca_dt_compat, | ||
MACHINE_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters