diff options
| author | Frieder Schrempf <[email protected]> | 2025-11-11 17:54:20 +0100 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-11-29 14:42:24 -0300 |
| commit | 8cad37db3667cf1bff8c36b15e17c63e53786873 (patch) | |
| tree | bbc01eea54493e0b8c910d7991fd6a0dabc4688c /include | |
| parent | b9e48705e0b6fb480c8cfdeeea453bddd33991f4 (diff) | |
imx: Add support for Kontron i.MX93 OSM-S SoM and BL carrier board
This adds support for the Kontron Electronics OSM-S i.MX93 SoM
and the matching baseboard BL i.MX93.
The SoM hardware complies to the Open Standard Module (OSM) 1.1
specification, size S (https://sget.org/standards/osm).
Signed-off-by: Frieder Schrempf <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/kontron-osm-s-mx93.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/configs/kontron-osm-s-mx93.h b/include/configs/kontron-osm-s-mx93.h new file mode 100644 index 00000000000..ab2b42298c8 --- /dev/null +++ b/include/configs/kontron-osm-s-mx93.h @@ -0,0 +1,30 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2024 Kontron Electronics GmbH + * + * Configuration settings for the Kontron OSM-S/BL i.MX93 boards and modules. + */ +#ifndef __KONTRON_MX93_CONFIG_H +#define __KONTRON_MX93_CONFIG_H + +#include <asm/arch/imx-regs.h> +#include <linux/sizes.h> + +/* RAM */ +#define PHYS_SDRAM 0x80000000 +#define PHYS_SDRAM_SIZE (SZ_2G) +#define CFG_SYS_SDRAM_BASE PHYS_SDRAM + +#define CFG_SYS_INIT_RAM_ADDR 0x80000000 +#define CFG_SYS_INIT_RAM_SIZE SZ_2M + +/* Board and environment settings */ + +#ifdef CONFIG_USB_EHCI_HCD +#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) +#define CFG_MXC_USB_FLAGS 0 +#endif + +#define WDOG_BASE_ADDR WDG3_BASE_ADDR + +#endif /* __KONTRON_MX93_CONFIG_H */ |
