xref: /openbmc/u-boot/board/esd/vme8349/vme8349pin.h (revision a0daa2e0)
1*a0daa2e0SReinhard Arlt /*
2*a0daa2e0SReinhard Arlt  * vme8349pin.h -- esd VME8349 MPC8349 I/O pin definition.
3*a0daa2e0SReinhard Arlt  * Copyright (c) 2009 esd gmbh.
4*a0daa2e0SReinhard Arlt  *
5*a0daa2e0SReinhard Arlt  * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
6*a0daa2e0SReinhard Arlt  *
7*a0daa2e0SReinhard Arlt  * See file CREDITS for list of people who contributed to this
8*a0daa2e0SReinhard Arlt  * project.
9*a0daa2e0SReinhard Arlt  *
10*a0daa2e0SReinhard Arlt  * This program is free software; you can redistribute it and/or
11*a0daa2e0SReinhard Arlt  * modify it under the terms of the GNU General Public License as
12*a0daa2e0SReinhard Arlt  * published by the Free Software Foundation; either version 2 of
13*a0daa2e0SReinhard Arlt  * the License, or (at your option) any later version.
14*a0daa2e0SReinhard Arlt  *
15*a0daa2e0SReinhard Arlt  * This program is distributed in the hope that it will be useful,
16*a0daa2e0SReinhard Arlt  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*a0daa2e0SReinhard Arlt  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*a0daa2e0SReinhard Arlt  * GNU General Public License for more details.
19*a0daa2e0SReinhard Arlt  *
20*a0daa2e0SReinhard Arlt  * You should have received a copy of the GNU General Public License
21*a0daa2e0SReinhard Arlt  * along with this program; if not, write to the Free Software
22*a0daa2e0SReinhard Arlt  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23*a0daa2e0SReinhard Arlt  * MA 02111-1307 USA
24*a0daa2e0SReinhard Arlt  *
25*a0daa2e0SReinhard Arlt  */
26*a0daa2e0SReinhard Arlt 
27*a0daa2e0SReinhard Arlt #ifndef __VME8349PIN_H__
28*a0daa2e0SReinhard Arlt #define __VME8349PIN_H__
29*a0daa2e0SReinhard Arlt 
30*a0daa2e0SReinhard Arlt #define GPIO2_V_SCON		0x80000000 /* In:  from tsi148 1: is syscon */
31*a0daa2e0SReinhard Arlt #define GPIO2_VME_RESET_N	0x20000000 /* Out: to tsi148                */
32*a0daa2e0SReinhard Arlt #define GPIO2_TSI_PLL_RESET_N	0x08000000 /* Out: to tsi148                */
33*a0daa2e0SReinhard Arlt #define GPIO2_TSI_POWERUP_RESET_N 0x00800000 /* Out: to tsi148              */
34*a0daa2e0SReinhard Arlt #define GPIO2_L_RESET_EN_N	0x00100000 /* Out: 0:vme can assert cpu lrst*/
35*a0daa2e0SReinhard Arlt 
36*a0daa2e0SReinhard Arlt #endif /* of ifndef __VME8349PIN_H__ */
37