mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
be72e0c8c5
Based on ST-Ericsson internal git repo. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: John Rigby <john.rigby@linaro.org> CC: Albert Aribaud <albert.aribaud@free.fr>
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2009
|
|
*
|
|
* See file CREDITS for list of people who contributed to this
|
|
* project.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef __U8500_H
|
|
#define __U8500_H
|
|
|
|
/*
|
|
* base register values for U8500
|
|
*/
|
|
#define CFG_PRCMU_BASE 0x80157000 /* Power, reset and clock
|
|
Management Unit */
|
|
#define CFG_SDRAMC_BASE 0x903CF000 /* SDRAMC cnf registers */
|
|
#define CFG_FSMC_BASE 0x80000000 /* FSMC Controller */
|
|
|
|
/*
|
|
* U8500 GPIO register base for 9 banks
|
|
*/
|
|
#define U8500_GPIO_0_BASE 0x8012E000
|
|
#define U8500_GPIO_1_BASE 0x8012E080
|
|
#define U8500_GPIO_2_BASE 0x8000E000
|
|
#define U8500_GPIO_3_BASE 0x8000E080
|
|
#define U8500_GPIO_4_BASE 0x8000E100
|
|
#define U8500_GPIO_5_BASE 0x8000E180
|
|
#define U8500_GPIO_6_BASE 0x8011E000
|
|
#define U8500_GPIO_7_BASE 0x8011E080
|
|
#define U8500_GPIO_8_BASE 0xA03FE000
|
|
|
|
#endif /* __U8500_H */
|