summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-07-31 08:54:22 -0600
committerTom Rini <[email protected]>2026-07-31 08:54:22 -0600
commit8f50b59036812b25e8988290eebf687ea812267e (patch)
tree973c554c08d679a67d26f12833eed20f6afc61a5 /include
parent100e12ea78c73071b9710f08b32fd4590019266f (diff)
parent57f382db43241217886d10755a555ef33e36d732 (diff)
Merge tag 'u-boot-marvell-20260731' of https://git.u-boot-project.org/u-boot/custodians/u-boot-marvell
CI: https://git.u-boot-project.org/u-boot/custodians/u-boot-marvell/-/pipelines/834 u-boot-marvell changes 2026-07-31: - arm64: a37xx: pinctrl: fix info->dev used but never set (Quentin) - arm: mach-mvebu: Add more AC3 & PC3 variants (Chris) - arm: mvebu: Update docs for Allied Telesis x220 (Chris) - arm: mvebu: Add Allied Telesis x960 board (Chris)
Diffstat (limited to 'include')
-rw-r--r--include/configs/x960.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/configs/x960.h b/include/configs/x960.h
new file mode 100644
index 00000000000..b9699518751
--- /dev/null
+++ b/include/configs/x960.h
@@ -0,0 +1,28 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2026 Allied Telesis
+ */
+
+#ifndef __X960_H_
+#define __X960_H_
+
+/*
+ * High Level Configuration Options (easy to change)
+ */
+#define CFG_SYS_TCLK 250000000 /* 250MHz */
+
+/* additions for new ARM relocation support */
+#define CFG_SYS_SDRAM_BASE 0x00000000
+
+#define BOOT_TARGETS "usb scsi pxe dhcp"
+
+#define CFG_EXTRA_ENV_SETTINGS \
+ "scriptaddr=0x6d00000\0" \
+ "pxefile_addr_r=0x6e00000\0" \
+ "fdt_addr_r=0x6f00000\0" \
+ "kernel_addr_r=0x7000000\0" \
+ "ramdisk_addr_r=0xa000000\0" \
+ "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
+ "boot_targets=" BOOT_TARGETS "\0"
+
+#endif /* __X960_H_ */