Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2005 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __P3P440_H__ |
| 9 | #define __P3P440_H__ |
| 10 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 11 | #define CONFIG_SYS_GPIO_RDY (0x80000000 >> 11) |
| 12 | #define CONFIG_SYS_MONARCH_IO (0x80000000 >> 18) |
| 13 | #define CONFIG_SYS_EREADY_IO (0x80000000 >> 20) |
| 14 | #define CONFIG_SYS_LED_GREEN (0x80000000 >> 21) |
| 15 | #define CONFIG_SYS_LED_RED (0x80000000 >> 22) |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 16 | |
| 17 | #define LED_OFF 1 |
| 18 | #define LED_GREEN 2 |
| 19 | #define LED_RED 3 |
| 20 | #define LED_ORANGE 4 |
| 21 | |
| 22 | long int fixed_sdram(void); |
| 23 | |
| 24 | #endif /* __P3P440_H__ */ |