Heiko Schocher | a6f2e45 | 2008-08-28 13:50:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #ifndef _TQM8272_HEADER_H |
| 25 | #define _TQM8272_HEADER_H |
| 26 | |
| 27 | #define _NOT_USED_ 0xFFFFFFFF |
| 28 | |
| 29 | typedef struct{ |
| 30 | int Bus; |
| 31 | int flash; |
| 32 | int flash_nr; |
| 33 | int ram; |
| 34 | int ram_cs; |
| 35 | int nand; |
| 36 | int nand_cs; |
| 37 | int eeprom; |
| 38 | int can; |
| 39 | unsigned long cpunr; |
| 40 | unsigned long option; |
| 41 | int SecEng; |
| 42 | int cpucl; |
| 43 | int cpmcl; |
| 44 | int buscl; |
| 45 | int busclk_real_ok; |
| 46 | int busclk_real; |
| 47 | unsigned char OK; |
| 48 | unsigned char ethaddr[20]; |
| 49 | } HWIB_INFO; |
| 50 | |
| 51 | static HWIB_INFO hwinf = {0, 0, 1, 0, 1, 0, 0, 0, 0, 8272, 0 ,0, |
| 52 | 0, 0, 0, 0, 0, 0}; |
| 53 | #endif |