2002-10-21 17:04:47 +00:00
|
|
|
/*
|
2010-07-24 18:22:02 +00:00
|
|
|
* (C) Copyright 2002-2010
|
2002-10-21 17:04:47 +00:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_GBL_DATA_H
|
|
|
|
#define __ASM_GBL_DATA_H
|
2005-07-28 15:08:46 +00:00
|
|
|
|
2009-09-21 16:20:37 +00:00
|
|
|
#include "config.h"
|
2005-07-28 15:08:46 +00:00
|
|
|
#include "asm/types.h"
|
|
|
|
|
2002-10-21 17:04:47 +00:00
|
|
|
/*
|
|
|
|
* The following data structure is placed in some memory wich is
|
|
|
|
* available very early after boot (like DPRAM on MPC8xx/MPC82xx, or
|
|
|
|
* some locked parts of the data cache) to allow for a minimum set of
|
|
|
|
* global variables during system initialization (until we have set
|
|
|
|
* up the memory controller so that we can use RAM).
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct global_data {
|
|
|
|
bd_t *bd;
|
|
|
|
unsigned long flags;
|
2012-10-12 14:21:14 +00:00
|
|
|
unsigned int baudrate;
|
2008-02-17 22:57:47 +00:00
|
|
|
unsigned long cpu_clk; /* CPU clock in Hz! */
|
2002-10-21 17:04:47 +00:00
|
|
|
unsigned long bus_clk;
|
2008-02-17 22:57:47 +00:00
|
|
|
#if defined(CONFIG_8xx)
|
|
|
|
unsigned long brg_clk;
|
|
|
|
#endif
|
2005-07-23 15:37:35 +00:00
|
|
|
#if defined(CONFIG_CPM2)
|
2002-10-21 17:04:47 +00:00
|
|
|
/* There are many clocks on the MPC8260 - see page 9-5 */
|
|
|
|
unsigned long vco_out;
|
|
|
|
unsigned long cpm_clk;
|
|
|
|
unsigned long scc_clk;
|
|
|
|
unsigned long brg_clk;
|
2008-08-06 12:05:38 +00:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
unsigned long pci_clk;
|
|
|
|
#endif
|
2003-07-16 21:53:01 +00:00
|
|
|
#endif
|
2006-11-02 10:49:51 +00:00
|
|
|
unsigned long mem_clk;
|
2009-05-22 22:23:24 +00:00
|
|
|
#if defined(CONFIG_MPC83xx)
|
2005-07-28 15:08:46 +00:00
|
|
|
/* There are other clocks in the MPC83XX */
|
|
|
|
u32 csb_clk;
|
2010-06-28 12:44:33 +00:00
|
|
|
#if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \
|
|
|
|
defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x)
|
2005-07-28 15:08:46 +00:00
|
|
|
u32 tsec1_clk;
|
|
|
|
u32 tsec2_clk;
|
|
|
|
u32 usbdr_clk;
|
2012-10-10 22:13:08 +00:00
|
|
|
#elif defined(CONFIG_MPC8309)
|
|
|
|
u32 usbdr_clk;
|
2007-04-16 19:34:18 +00:00
|
|
|
#endif
|
2009-05-22 22:23:25 +00:00
|
|
|
#if defined (CONFIG_MPC834x)
|
2007-04-16 19:34:18 +00:00
|
|
|
u32 usbmph_clk;
|
2009-05-22 22:23:25 +00:00
|
|
|
#endif /* CONFIG_MPC834x */
|
2008-01-10 15:04:13 +00:00
|
|
|
#if defined(CONFIG_MPC8315)
|
2007-09-18 04:36:58 +00:00
|
|
|
u32 tdm_clk;
|
2007-09-18 04:36:11 +00:00
|
|
|
#endif
|
2006-11-04 01:33:44 +00:00
|
|
|
u32 core_clk;
|
2005-07-28 15:08:46 +00:00
|
|
|
u32 enc_clk;
|
|
|
|
u32 lbiu_clk;
|
|
|
|
u32 lclk_clk;
|
2005-10-17 00:39:53 +00:00
|
|
|
u32 pci_clk;
|
2010-06-28 12:44:33 +00:00
|
|
|
#if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \
|
|
|
|
defined(CONFIG_MPC837x)
|
2007-09-18 04:36:11 +00:00
|
|
|
u32 pciexp1_clk;
|
|
|
|
u32 pciexp2_clk;
|
2007-09-18 04:36:58 +00:00
|
|
|
#endif
|
2009-05-22 22:23:25 +00:00
|
|
|
#if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315)
|
2007-09-18 04:36:11 +00:00
|
|
|
u32 sata_clk;
|
|
|
|
#endif
|
2007-08-14 05:14:25 +00:00
|
|
|
#if defined(CONFIG_MPC8360)
|
2008-03-28 15:18:40 +00:00
|
|
|
u32 mem_sec_clk;
|
2007-08-14 05:14:25 +00:00
|
|
|
#endif /* CONFIG_MPC8360 */
|
|
|
|
#endif
|
2009-08-05 07:59:24 +00:00
|
|
|
#if defined(CONFIG_FSL_ESDHC)
|
2008-08-12 16:14:19 +00:00
|
|
|
u32 sdhc_clk;
|
|
|
|
#endif
|
mpc8[56]xx: Put localbus clock in sysinfo and gd
Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
and print it out, but don't save it.
This changes where its calculated and stored to be more consistent with the
CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
The localbus frequency is added to sysinfo and calculated when sysinfo is
set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
get_clocks() copies the frequency into the global data, as the other
frequencies are, into a new field that is only enabled for MPC85xx and
MPC86xx.
checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
from sysinfo, like the other frequencies, instead of calculating it on the
spot.
Signed-off-by: Trent Piepho <tpiepho@freescale.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Jon Loeliger <jdl@freescale.com>
2008-12-03 23:16:37 +00:00
|
|
|
#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
|
|
|
u32 lbc_clk;
|
2009-07-31 06:38:14 +00:00
|
|
|
void *cpu;
|
mpc8[56]xx: Put localbus clock in sysinfo and gd
Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
and print it out, but don't save it.
This changes where its calculated and stored to be more consistent with the
CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
The localbus frequency is added to sysinfo and calculated when sysinfo is
set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
get_clocks() copies the frequency into the global data, as the other
frequencies are, into a new field that is only enabled for MPC85xx and
MPC86xx.
checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
from sysinfo, like the other frequencies, instead of calculating it on the
spot.
Signed-off-by: Trent Piepho <tpiepho@freescale.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Jon Loeliger <jdl@freescale.com>
2008-12-03 23:16:37 +00:00
|
|
|
#endif /* CONFIG_MPC85xx || CONFIG_MPC86xx */
|
2009-05-22 22:23:24 +00:00
|
|
|
#if defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
|
2008-01-09 20:35:26 +00:00
|
|
|
u32 i2c1_clk;
|
|
|
|
u32 i2c2_clk;
|
|
|
|
#endif
|
2006-11-04 01:33:44 +00:00
|
|
|
#if defined(CONFIG_QE)
|
|
|
|
u32 qe_clk;
|
|
|
|
u32 brg_clk;
|
2006-11-03 18:11:15 +00:00
|
|
|
uint mp_alloc_base;
|
|
|
|
uint mp_alloc_top;
|
2006-11-04 01:33:44 +00:00
|
|
|
#endif /* CONFIG_QE */
|
2008-06-11 05:44:10 +00:00
|
|
|
#if defined(CONFIG_FSL_LAW)
|
|
|
|
u32 used_laws;
|
|
|
|
#endif
|
2009-11-12 16:26:16 +00:00
|
|
|
#if defined(CONFIG_E500)
|
|
|
|
u32 used_tlb_cams[(CONFIG_SYS_NUM_TLBCAMS+31)/32];
|
|
|
|
#endif
|
2004-02-24 02:00:03 +00:00
|
|
|
#if defined(CONFIG_MPC5xxx)
|
2003-07-16 21:53:01 +00:00
|
|
|
unsigned long ipb_clk;
|
|
|
|
unsigned long pci_clk;
|
2004-10-28 00:09:35 +00:00
|
|
|
#endif
|
2007-07-27 12:43:59 +00:00
|
|
|
#if defined(CONFIG_MPC512X)
|
2008-01-11 11:03:43 +00:00
|
|
|
u32 ips_clk;
|
2007-07-27 12:43:59 +00:00
|
|
|
u32 csb_clk;
|
2008-02-26 16:38:14 +00:00
|
|
|
u32 pci_clk;
|
2007-07-27 12:43:59 +00:00
|
|
|
#endif /* CONFIG_MPC512X */
|
2004-10-28 00:09:35 +00:00
|
|
|
#if defined(CONFIG_MPC8220)
|
|
|
|
unsigned long bExtUart;
|
|
|
|
unsigned long inp_clk;
|
|
|
|
unsigned long pci_clk;
|
|
|
|
unsigned long vco_clk;
|
|
|
|
unsigned long pev_clk;
|
|
|
|
unsigned long flb_clk;
|
2002-10-21 17:04:47 +00:00
|
|
|
#endif
|
2008-06-10 01:37:16 +00:00
|
|
|
phys_size_t ram_size; /* RAM size */
|
2002-10-21 17:04:47 +00:00
|
|
|
unsigned long reset_status; /* reset status register at boot */
|
2009-05-22 22:23:24 +00:00
|
|
|
#if defined(CONFIG_MPC83xx)
|
2008-08-28 21:09:19 +00:00
|
|
|
unsigned long arbiter_event_attributes;
|
|
|
|
unsigned long arbiter_event_address;
|
|
|
|
#endif
|
2002-10-21 17:04:47 +00:00
|
|
|
unsigned long env_addr; /* Address of Environment struct */
|
|
|
|
unsigned long env_valid; /* Checksum of Environment valid? */
|
|
|
|
unsigned long have_console; /* serial_init() was called */
|
2011-09-01 00:48:27 +00:00
|
|
|
#ifdef CONFIG_PRE_CONSOLE_BUFFER
|
|
|
|
unsigned long precon_buf_idx; /* Pre-Console buffer index */
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_ALLOC_DPRAM) || defined(CONFIG_CPM2)
|
2002-10-21 17:04:47 +00:00
|
|
|
unsigned int dp_alloc_base;
|
|
|
|
unsigned int dp_alloc_top;
|
|
|
|
#endif
|
2007-10-23 09:31:05 +00:00
|
|
|
#if defined(CONFIG_4xx)
|
|
|
|
u32 uart_clk;
|
|
|
|
#endif /* CONFIG_4xx */
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_GT_6426x)
|
2002-10-21 17:04:47 +00:00
|
|
|
unsigned int mirror_hack[16];
|
|
|
|
#endif
|
2005-04-03 15:51:42 +00:00
|
|
|
#if defined(CONFIG_A3000) || \
|
|
|
|
defined(CONFIG_HIDDEN_DRAGON) || \
|
|
|
|
defined(CONFIG_MUSENKI) || \
|
|
|
|
defined(CONFIG_SANDPOINT)
|
2002-10-21 17:04:47 +00:00
|
|
|
void * console_addr;
|
|
|
|
#endif
|
2002-11-19 11:04:11 +00:00
|
|
|
unsigned long relocaddr; /* Start address of U-Boot in RAM */
|
2002-10-21 17:04:47 +00:00
|
|
|
#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
|
|
|
|
unsigned long fb_base; /* Base address of framebuffer memory */
|
|
|
|
#endif
|
2003-07-15 21:50:34 +00:00
|
|
|
#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
|
2002-12-08 09:53:23 +00:00
|
|
|
unsigned long post_log_word; /* Record POST activities */
|
2011-08-03 02:37:01 +00:00
|
|
|
unsigned long post_log_res; /* success of POST test */
|
2003-04-27 22:52:51 +00:00
|
|
|
unsigned long post_init_f_time; /* When post_init_f started */
|
2002-12-08 09:53:23 +00:00
|
|
|
#endif
|
2002-10-21 17:04:47 +00:00
|
|
|
#ifdef CONFIG_BOARD_TYPES
|
|
|
|
unsigned long board_type;
|
|
|
|
#endif
|
2003-04-27 22:52:51 +00:00
|
|
|
#ifdef CONFIG_MODEM_SUPPORT
|
|
|
|
unsigned long do_mdm_init;
|
|
|
|
unsigned long be_quiet;
|
|
|
|
#endif
|
2007-08-21 14:27:57 +00:00
|
|
|
#if defined(CONFIG_LWMON) || defined(CONFIG_LWMON5)
|
2003-04-27 22:52:51 +00:00
|
|
|
unsigned long kbd_status;
|
2008-04-06 17:19:14 +00:00
|
|
|
#endif
|
2011-01-21 08:31:21 +00:00
|
|
|
#ifdef CONFIG_SYS_FPGA_COUNT
|
|
|
|
unsigned fpga_state[CONFIG_SYS_FPGA_COUNT];
|
|
|
|
#endif
|
2008-04-06 17:19:14 +00:00
|
|
|
#if defined(CONFIG_WD_MAX_RATE)
|
|
|
|
unsigned long long wdt_last; /* trace watch-dog triggering rate */
|
2003-06-27 21:31:46 +00:00
|
|
|
#endif
|
2003-07-24 23:38:38 +00:00
|
|
|
void **jt; /* jump table */
|
2010-07-24 18:22:02 +00:00
|
|
|
char env_buf[32]; /* buffer for getenv() before reloc. */
|
2002-10-21 17:04:47 +00:00
|
|
|
} gd_t;
|
|
|
|
|
2012-03-18 14:31:24 +00:00
|
|
|
#include <asm-generic/global_data_flags.h>
|
2002-10-21 17:04:47 +00:00
|
|
|
|
|
|
|
#if 1
|
2008-02-14 21:43:22 +00:00
|
|
|
#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r2")
|
2002-10-21 17:04:47 +00:00
|
|
|
#else /* We could use plain global data, but the resulting code is bigger */
|
|
|
|
#define XTRN_DECLARE_GLOBAL_DATA_PTR extern
|
|
|
|
#define DECLARE_GLOBAL_DATA_PTR XTRN_DECLARE_GLOBAL_DATA_PTR \
|
|
|
|
gd_t *gd
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASM_GBL_DATA_H */
|