diff options
| author | Tony Dinh <[email protected]> | 2023-08-25 20:33:29 -0700 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2023-10-16 11:10:42 +0200 |
| commit | b3f559a147fc1c4a30e596a760735a629a152617 (patch) | |
| tree | 72d9063efc519df9330bcfa6404b8ba70fc56b8b /include | |
| parent | 4df539c0c59a76b14c0541a4a42687de35641bbb (diff) | |
arm: kirkwood: Add support for ZyXEL NSA325 board
ZyXEL NSA325 specifications:
Marvell Kirkwood 88F6282 SoC
1.6 GHz CPU
1x GBE LAN port (Marvell MV88E1318)
512 MB RAM
128 MB Eon NAND, SLC
I2C
1x USB 3.0 (on PCIe bus)
2x USB 2.0
2x SATA (hot swap slots)
Serial console
Signed-off-by: Tony Dinh <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/nsa325.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/configs/nsa325.h b/include/configs/nsa325.h new file mode 100644 index 00000000000..00a148c6ae9 --- /dev/null +++ b/include/configs/nsa325.h @@ -0,0 +1,37 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2016-2023 Tony Dinh <[email protected]> + * (C) Copyright 2014 Jason Plum <[email protected]> + * + * Based on + * Copyright (C) 2012 Peter Schildmann <[email protected]> + * + * Based on guruplug.h originally written by + * Siddarth Gore <[email protected]> + * (C) Copyright 2009 + * Marvell Semiconductor <www.marvell.com> + */ + +#ifndef _CONFIG_NSA325_H +#define _CONFIG_NSA325_H + +#include "mv-common.h" + +#define KERNEL_ADDR_R __stringify(0x800000) +#define FDT_ADDR_R __stringify(0x2c00000) +#define RAMDISK_ADDR_R __stringify(0x01100000) +#define SCRIPT_ADDR_R __stringify(0x200000) + +#define LOAD_ADDRESS_ENV_SETTINGS \ + "kernel_addr_r=" KERNEL_ADDR_R "\0" \ + "fdt_addr_r=" FDT_ADDR_R "\0" \ + "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \ + "scriptaddr=" SCRIPT_ADDR_R "\0" + +#define CFG_EXTRA_ENV_SETTINGS \ + LOAD_ADDRESS_ENV_SETTINGS \ + "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ + "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ + "console=ttyS0,115200\0" + +#endif /* _CONFIG_NSA325_H */ |
