blob: a51512c681774a411bcfbcbf6488547b9320a2e6 [file] [log] [blame]
Pete Popove3ad1c22005-03-01 06:33:16 +00001/*
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +04002 * AMD Alchemy Pb1200 Referrence Board
Pete Popove3ad1c22005-03-01 06:33:16 +00003 * Board Registers defines.
4 *
5 * ########################################################################
6 *
7 * This program is free software; you can distribute it and/or modify it
8 * under the terms of the GNU General Public License (Version 2) as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
19 *
20 * ########################################################################
21 *
22 *
23 */
24#ifndef __ASM_PB1200_H
25#define __ASM_PB1200_H
26
27#include <linux/types.h>
Manuel Lauss9e39ffe2008-02-24 20:03:42 +010028#include <asm/mach-au1x00/au1xxx_psc.h>
Pete Popove3ad1c22005-03-01 06:33:16 +000029
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040030#define DBDMA_AC97_TX_CHAN DSCR_CMD0_PSC1_TX
31#define DBDMA_AC97_RX_CHAN DSCR_CMD0_PSC1_RX
32#define DBDMA_I2S_TX_CHAN DSCR_CMD0_PSC1_TX
33#define DBDMA_I2S_RX_CHAN DSCR_CMD0_PSC1_RX
Pete Popove3ad1c22005-03-01 06:33:16 +000034
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040035/*
36 * SPI and SMB are muxed on the Pb1200 board.
37 * Refer to board documentation.
Pete Popove3ad1c22005-03-01 06:33:16 +000038 */
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040039#define SPI_PSC_BASE PSC0_BASE_ADDR
40#define SMBUS_PSC_BASE PSC0_BASE_ADDR
41/*
42 * AC97 and I2S are muxed on the Pb1200 board.
43 * Refer to board documentation.
Pete Popove3ad1c22005-03-01 06:33:16 +000044 */
45#define AC97_PSC_BASE PSC1_BASE_ADDR
Manuel Lauss9bdcf332009-10-04 14:55:24 +020046#define I2S_PSC_BASE PSC1_BASE_ADDR
Pete Popove3ad1c22005-03-01 06:33:16 +000047
Pete Popove3ad1c22005-03-01 06:33:16 +000048
49#define BCSR_SYSTEM_VDDI 0x001F
50#define BCSR_SYSTEM_POWEROFF 0x4000
51#define BCSR_SYSTEM_RESET 0x8000
52
53/* Bit positions for the different interrupt sources */
54#define BCSR_INT_IDE 0x0001
55#define BCSR_INT_ETH 0x0002
56#define BCSR_INT_PC0 0x0004
57#define BCSR_INT_PC0STSCHG 0x0008
58#define BCSR_INT_PC1 0x0010
59#define BCSR_INT_PC1STSCHG 0x0020
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040060#define BCSR_INT_DC 0x0040
Pete Popove3ad1c22005-03-01 06:33:16 +000061#define BCSR_INT_FLASHBUSY 0x0080
62#define BCSR_INT_PC0INSERT 0x0100
63#define BCSR_INT_PC0EJECT 0x0200
64#define BCSR_INT_PC1INSERT 0x0400
65#define BCSR_INT_PC1EJECT 0x0800
66#define BCSR_INT_SD0INSERT 0x1000
67#define BCSR_INT_SD0EJECT 0x2000
68#define BCSR_INT_SD1INSERT 0x4000
69#define BCSR_INT_SD1EJECT 0x8000
70
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +040071#define SMC91C111_PHYS_ADDR 0x0D000300
72#define SMC91C111_INT PB1200_ETH_INT
Pete Popove3ad1c22005-03-01 06:33:16 +000073
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +040074#define IDE_PHYS_ADDR 0x0C800000
75#define IDE_REG_SHIFT 5
76#define IDE_PHYS_LEN (16 << IDE_REG_SHIFT)
77#define IDE_INT PB1200_IDE_INT
78#define IDE_DDMA_REQ DSCR_CMD0_DMA_REQ1
79#define IDE_RQSIZE 128
Pete Popove3ad1c22005-03-01 06:33:16 +000080
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040081#define NAND_PHYS_ADDR 0x1C000000
Pete Popove3ad1c22005-03-01 06:33:16 +000082
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040083/*
84 * Timing values as described in databook, * ns value stripped of
Pete Popove3ad1c22005-03-01 06:33:16 +000085 * lower 2 bits.
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040086 * These defines are here rather than an Au1200 generic file because
Pete Popove3ad1c22005-03-01 06:33:16 +000087 * the parts chosen on another board may be different and may require
88 * different timings.
89 */
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040090#define NAND_T_H (18 >> 2)
91#define NAND_T_PUL (30 >> 2)
92#define NAND_T_SU (30 >> 2)
93#define NAND_T_WH (30 >> 2)
Pete Popove3ad1c22005-03-01 06:33:16 +000094
95/* Bitfield shift amounts */
96#define NAND_T_H_SHIFT 0
97#define NAND_T_PUL_SHIFT 4
98#define NAND_T_SU_SHIFT 8
99#define NAND_T_WH_SHIFT 12
100
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400101#define NAND_TIMING (((NAND_T_H & 0xF) << NAND_T_H_SHIFT) | \
102 ((NAND_T_PUL & 0xF) << NAND_T_PUL_SHIFT) | \
103 ((NAND_T_SU & 0xF) << NAND_T_SU_SHIFT) | \
104 ((NAND_T_WH & 0xF) << NAND_T_WH_SHIFT))
Pete Popove3ad1c22005-03-01 06:33:16 +0000105
106/*
Ralf Baechle9d360ab2007-10-17 15:38:30 +0100107 * External Interrupts for Pb1200 as of 8/6/2004.
108 * Bit positions in the CPLD registers can be calculated by taking
109 * the interrupt define and subtracting the PB1200_INT_BEGIN value.
110 *
111 * Example: IDE bis pos is = 64 - 64
112 * ETH bit pos is = 65 - 64
Pete Popove3ad1c22005-03-01 06:33:16 +0000113 */
Ralf Baechle9d360ab2007-10-17 15:38:30 +0100114enum external_pb1200_ints {
115 PB1200_INT_BEGIN = AU1000_MAX_INTR + 1,
Pete Popove3ad1c22005-03-01 06:33:16 +0000116
Ralf Baechle9d360ab2007-10-17 15:38:30 +0100117 PB1200_IDE_INT = PB1200_INT_BEGIN,
118 PB1200_ETH_INT,
119 PB1200_PC0_INT,
120 PB1200_PC0_STSCHG_INT,
121 PB1200_PC1_INT,
122 PB1200_PC1_STSCHG_INT,
123 PB1200_DC_INT,
124 PB1200_FLASHBUSY_INT,
125 PB1200_PC0_INSERT_INT,
126 PB1200_PC0_EJECT_INT,
127 PB1200_PC1_INSERT_INT,
128 PB1200_PC1_EJECT_INT,
129 PB1200_SD0_INSERT_INT,
130 PB1200_SD0_EJECT_INT,
131 PB1200_SD1_INSERT_INT,
132 PB1200_SD1_EJECT_INT,
133
Sergei Shtylyov865ab872008-04-02 23:53:19 +0400134 PB1200_INT_END = PB1200_INT_BEGIN + 15
Ralf Baechle9d360ab2007-10-17 15:38:30 +0100135};
Pete Popove3ad1c22005-03-01 06:33:16 +0000136
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400137/*
138 * Pb1200 specific PCMCIA defines for drivers/pcmcia/au1000_db1x00.c
139 */
140#define PCMCIA_MAX_SOCK 1
141#define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1)
Pete Popove3ad1c22005-03-01 06:33:16 +0000142
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400143/* VPP/VCC */
144#define SET_VCC_VPP(VCC, VPP, SLOT) \
145 ((((VCC) << 2) | ((VPP) << 0)) << ((SLOT) * 8))
146
147#define BOARD_PC0_INT PB1200_PC0_INT
148#define BOARD_PC1_INT PB1200_PC1_INT
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200149#define BOARD_CARD_INSERTED(SOCKET) (bcsr_read(BCSR_SIGSTAT & (1 << (8 + (2 * SOCKET))))
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400150
151/* NAND chip select */
Ralf Baechlebdc3c3c2005-11-17 16:23:42 +0000152#define NAND_CS 1
153
Pete Popove3ad1c22005-03-01 06:33:16 +0000154#endif /* __ASM_PB1200_H */