summaryrefslogtreecommitdiff
path: root/board/bf609-ezkit/soft_switch.h
blob: 8da0e44ddf07e8a8884796dec7c7bf33206c16c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * U-boot - main board file
 *
 * Copyright (c) 2008-2011 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

#ifndef __SOFT_SWITCH_H__
#define __SOFT_SWITCH_H__

/* switch 0 port A */
#define CAN_EN                 0x1
#define CAN_STB                0x2
#define CAN0_ERR_EN            0x4
#define CAN0RX_EN              0x8
#define CNT0UD_EN              0x10
#define CNT0DG_EN              0x20
#define CNT0ZM_EN              0x40
#define RMII_CLK_EN            0x80

/* switch 0 port B */
#define UART0RTS_EN            0x1
#define UART0RX_EN             0x2
#define UART0CTS_EN            0x4
#define UART0CTS_RTS_LPBK      0x8
#define UART0CTS_RST_EN        0x10
#define UART0CTS_146_EN        0x20
#define TEMP_IRQ_EN            0x40
#define TEMP_THERM_EN          0x80

/* switch 1 port A */
#define OVERRIDE_SMC0_LP0_BOOT 0x1
#define SMC0_EPPI2_LP1_SWITCH  0x2
#define SMC0_LP0_EN            0x8
#define LED1_GPIO_EN           0x10
#define LED2_GPIO_EN           0x20
#define LED3_GPIO_EN           0x40
#define LED4_GPIO_EN           0x80

/* switch 1 port B */
#define PUSHBUTTON1_EN         0x1
#define PUSHBUTTON2_EN         0x2
#define SD_CD_EN               0x4
#define SD_WP_EN               0x8
#define SPIFLASH_CS_EN         0x10
#define SPI0D2_EN              0x20
#define SPI0D3_EN              0x40

/* switch 2 port A */
#define PHYINT_EN              0x1
#define PHY_PWR_DWN_INT        0x2
#define PHYAD0                 0x4
#define ETHERNET_EN            0x8
#define WAKE_PUSHBUTTON_EN     0x10
#define PD0_SPI0D2_EN          0x20
#define PD1_SPI0D3_EN          0x40
#define PD2_SPI0MISO_EN        0x80

/* switch 2 port B */
#define PD3_SPI0MOSI_EN        0x1
#define PD4_SPI0CK_EN          0x2

#define IO_PORT_A              0
#define IO_PORT_B              1
#define IO_PORT_INPUT          0
#define IO_PORT_OUTPUT         1

int config_switch_bit(int num, int port, int bit, int dir, uchar value);
int setup_board_switches(void);
#endif