diff options
author | Walter Schweizer <swwa@users.sourceforge.net> | 2016-10-06 23:29:56 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2016-10-09 10:55:32 +0200 |
commit | a0a868b20b7e3a8bc331f32720516d0ba85d7df8 (patch) | |
tree | bb4aacccd09a3b3d509d1b50be710ef650311125 /board/Synology/ds109/ds109.h | |
parent | f5fd45ff64e28a73499548358e3d1ceda0de7daf (diff) | |
download | u-boot-a0a868b20b7e3a8bc331f32720516d0ba85d7df8.tar.gz |
arm: kirkwood: add support for Synology DS109 board
Synology DS109 is based on MV88F6281. The code
is based on Dreamplug code with modificatons
from Synologys open source repository.
Signed-off-by: Walter Schweizer <swwa@users.sourceforge.net>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/Synology/ds109/ds109.h')
-rw-r--r-- | board/Synology/ds109/ds109.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/board/Synology/ds109/ds109.h b/board/Synology/ds109/ds109.h new file mode 100644 index 0000000000..95d924cf1f --- /dev/null +++ b/board/Synology/ds109/ds109.h @@ -0,0 +1,44 @@ +/* + * Copyright (C) 2009-2012 + * Wojciech Dubowik <wojciech.dubowik@neratec.com> + * Luka Perkov <luka@openwrt.org> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __DS109_H +#define __DS109_H + +#define DS109_OE_LOW (~(0)) +#define DS109_OE_HIGH (~(0)) +#define DS109_OE_VAL_LOW ((1 << 22)|(1 << 23)) +#define DS109_OE_VAL_HIGH ((1 << 1)|1) + +/* PHY related */ +#define MV88E1116_LED_FCTRL_REG 10 +#define MV88E1116_CPRSP_CR3_REG 21 +#define MV88E1116_MAC_CTRL_REG 21 +#define MV88E1116_MAC_CTRL2_REG 21 + +#define MV88E1116_PGADR_REG 22 +#define MV88E1116_RGMII_TXTM_CTRL (1 << 4) +#define MV88E1116_RGMII_RXTM_CTRL (1 << 5) + +/* Marvell uboot parameters */ +#define ATAG_MV_UBOOT 0x41000403 +#define VER_NUM 0x03040400 /* 3.4.4 */ +#define BOARD_ID_BASE 0x0 +#define SYNO_DS109_ID (BOARD_ID_BASE+0x15) + +struct tag_mv_uboot { + u32 uboot_version; + u32 tclk; + u32 sysclk; + u32 isusbhost; + char macaddr[4][6]; + u16 mtu[4]; + u32 fw_image_base; + u32 fw_image_size; +}; + +#endif /* __DS109_H */ |