mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
28887d831b
Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by using common code. Signed-off-by: Andr Schwarz <andre.schwarz@matrix-vision.de>
20 lines
483 B
C
20 lines
483 B
C
#ifndef __MVBC_H__
|
|
#define __MVBC_H__
|
|
|
|
#define MV_GPIO
|
|
|
|
#define FPGA_CONFIG 0x80000000
|
|
#define FPGA_CCLK 0x40000000
|
|
#define FPGA_DIN 0x20000000
|
|
#define FPGA_STATUS 0x10000000
|
|
#define FPGA_CONF_DONE 0x08000000
|
|
|
|
#define WD_WDI 0x00400000
|
|
#define WD_TS 0x00200000
|
|
#define MAN_RST 0x00100000
|
|
|
|
#define MV_GPIO_DAT (WD_TS)
|
|
#define MV_GPIO_OUT (FPGA_CONFIG|FPGA_DIN|FPGA_CCLK|MVBLM7_MMC_CS)
|
|
#define MV_GPIO_ODE (FPGA_CONFIG|MAN_RST)
|
|
|
|
#endif
|