]> git.sur5r.net Git - u-boot/blobdiff - arch/mips/include/asm/global_data.h
MIPS: Probe cache line sizes once during boot
[u-boot] / arch / mips / include / asm / global_data.h
index b39737fea32cfc0c9b5e4c40b195e801ca190085..8533b691b656ebd7c39f7804ed9af119572ca1cd 100644 (file)
@@ -2,23 +2,7 @@
  * (C) Copyright 2002-2010
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  *
- * 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
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #ifndef        __ASM_GBL_DATA_H
 
 /* Architecture-specific global data */
 struct arch_global_data {
-#ifdef CONFIG_JZSOC
-       /* There are other clocks in the jz4740 */
-       unsigned long per_clk;  /* Peripheral bus clock */
-       unsigned long dev_clk;  /* Device clock */
+#ifdef CONFIG_DYNAMIC_IO_PORT_BASE
+       unsigned long io_port_base;
+#endif
+#ifdef CONFIG_ARCH_ATH79
+       unsigned long id;
+       unsigned long soc;
+       unsigned long rev;
+       unsigned long ver;
+#endif
+#ifdef CONFIG_SYS_CACHE_SIZE_AUTO
+       unsigned short l1i_line_size;
+       unsigned short l1d_line_size;
 #endif
 };