* Patch by George G. Davis, 06 Jul 2004:

- update mach-types.h to latest arm.linux.org.uk master list
  - Set correct OMAP1610 bi_arch_number for build target

* Patch by Curt Brune, 06 Jul 2004:
  evb4510: add support for timer interrupt; cleanup
This commit is contained in:
wdenk 2004-07-11 22:19:26 +00:00
parent b9283e2dbe
commit a1f4a3dd05
10 changed files with 2885 additions and 103 deletions

View File

@ -2,6 +2,13 @@
Changes since U-Boot 1.1.1: Changes since U-Boot 1.1.1:
====================================================================== ======================================================================
* Patch by George G. Davis, 06 Jul 2004:
- update mach-types.h to latest arm.linux.org.uk master list
- Set correct OMAP1610 bi_arch_number for build target
* Patch by Curt Brune, 06 Jul 2004:
evb4510: add support for timer interrupt; cleanup
* Patch by Dan Poirot, 06 Jul 2004: * Patch by Dan Poirot, 06 Jul 2004:
Fix sbc8260 environment variables Fix sbc8260 environment variables

View File

@ -25,14 +25,10 @@
#include <asm/hardware.h> #include <asm/hardware.h>
#include <command.h> #include <command.h>
#ifdef CONFIG_EVB4510
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */
#define PUT_LED(val) (PUT_REG(REG_IOPDATA, (~val)&0xFF))
#define GET_LED() ((~GET_REG( REG_IOPDATA)) & 0xFF)
#define SET_LED(val) { u32 led = GET_LED(); led |= 1 << (val); PUT_LED( led); }
#define CLR_LED(val) { u32 led = GET_LED(); led &= ~(1 << (val)); PUT_LED( led); }
/* /*
* Miscelaneous platform dependent initialisations * Miscelaneous platform dependent initialisations
*/ */
@ -51,25 +47,6 @@ int board_init (void)
PUT_REG( REG_IOPMODE, 0xFFFF); PUT_REG( REG_IOPMODE, 0xFFFF);
PUT_REG( REG_IOPDATA, 0xFF); PUT_REG( REG_IOPDATA, 0xFF);
/* enable LED 7 to show we're alive */
SET_LED( 7);
/* configure free running timer 1 */
/* Stop timer 1 */
CLR_REG( REG_TMOD, TM1_RUN);
/* Configure for toggle mode */
SET_REG( REG_TMOD, TM1_TOGGLE);
/* Load Timer data register with count down value */
PUT_REG( REG_TDATA1, 0xFFFFFFFF);
/* Clear timer counter register */
PUT_REG( REG_TCNT1, 0x0);
/* Start timer -- count down timer */
SET_REG( REG_TMOD, TM1_RUN);
return 0; return 0;
} }
@ -84,3 +61,5 @@ int dram_init (void)
#endif #endif
return 0; return 0;
} }
#endif

View File

@ -32,6 +32,7 @@
*/ */
#include <common.h> #include <common.h>
#include <asm/mach-types.h>
#if defined(CONFIG_OMAP1610) #if defined(CONFIG_OMAP1610)
#include <./configs/omap1510.h> #include <./configs/omap1510.h>
#endif #endif
@ -62,9 +63,12 @@ int board_init (void)
{ {
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
/* arch number of OMAP 1510-Board */ if (machine_is_omap_h2())
/* to be changed for OMAP 1610 Board */ gd->bd->bi_arch_number = MACH_TYPE_OMAP_H2;
gd->bd->bi_arch_number = 234; else if (machine_is_omap_innovator())
gd->bd->bi_arch_number = MACH_TYPE_OMAP_INNOVATOR;
else
gd->bd->bi_arch_number = MACH_TYPE_OMAP_GENERIC;
/* adress of boot parameters */ /* adress of boot parameters */
gd->bd->bi_boot_params = 0x10000100; gd->bd->bi_boot_params = 0x10000100;

View File

@ -46,6 +46,15 @@ extern void reset_cpu(ulong addr);
#define READ_TIMER (TM2STAT & NETARM_GEN_TSTAT_CTC_MASK) #define READ_TIMER (TM2STAT & NETARM_GEN_TSTAT_CTC_MASK)
#endif #endif
#ifdef CONFIG_S3C4510B
/* require interrupts for the S3C4510B */
# ifndef CONFIG_USE_IRQ
# error CONFIG_USE_IRQ _must_ be defined when using CONFIG_S3C4510B
# else
static struct _irq_handler IRQ_HANDLER[N_IRQS];
# endif
#endif /* CONFIG_S3C4510B */
#ifdef CONFIG_USE_IRQ #ifdef CONFIG_USE_IRQ
/* enable IRQ/FIQ interrupts */ /* enable IRQ/FIQ interrupts */
void enable_interrupts (void) void enable_interrupts (void)
@ -75,7 +84,7 @@ int disable_interrupts (void)
: "memory"); : "memory");
return (old & 0x80) == 0; return (old & 0x80) == 0;
} }
#else #else /* CONFIG_USE_IRQ */
void enable_interrupts (void) void enable_interrupts (void)
{ {
return; return;
@ -86,7 +95,6 @@ int disable_interrupts (void)
} }
#endif #endif
void bad_mode (void) void bad_mode (void)
{ {
panic ("Resetting CPU ...\n"); panic ("Resetting CPU ...\n");
@ -174,11 +182,42 @@ void do_fiq (struct pt_regs *pt_regs)
void do_irq (struct pt_regs *pt_regs) void do_irq (struct pt_regs *pt_regs)
{ {
#if defined(CONFIG_IMPA7) || defined(CONFIG_EP7312) || defined(CONFIG_NETARM)
printf ("interrupt request\n"); printf ("interrupt request\n");
show_regs (pt_regs); show_regs (pt_regs);
bad_mode (); bad_mode ();
#elif defined(CONFIG_S3C4510B)
unsigned int pending;
while ( (pending = GET_REG( REG_INTOFFSET)) != 0x54) { /* sentinal value for no pending interrutps */
IRQ_HANDLER[pending>>2].m_func( IRQ_HANDLER[pending>>2].m_data);
/* clear pending interrupt */
PUT_REG( REG_INTPEND, (1<<(pending>>2)));
}
#else
#error do_irq() not defined for this CPU type
#endif
} }
#ifdef CONFIG_S3C4510B
static void default_isr( void *data) {
printf ("default_isr(): called for IRQ %d\n", (int)data);
}
static void timer_isr( void *data) {
unsigned int *pTime = (unsigned int *)data;
(*pTime)++;
if ( !(*pTime % (CFG_HZ/4))) {
/* toggle LED 0 */
PUT_REG( REG_IOPDATA, GET_REG(REG_IOPDATA) ^ 0x1);
}
}
#endif
static ulong timestamp; static ulong timestamp;
static ulong lastdec; static ulong lastdec;
@ -209,8 +248,48 @@ int interrupt_init (void)
/* set timer 1 counter */ /* set timer 1 counter */
lastdec = IO_TC1D = TIMER_LOAD_VAL; lastdec = IO_TC1D = TIMER_LOAD_VAL;
#elif defined(CONFIG_S3C4510B) #elif defined(CONFIG_S3C4510B)
/* Nothing to do, interrupts not supported */ int i;
/* install default interrupt handlers */
for ( i = 0; i < N_IRQS; i++) {
IRQ_HANDLER[i].m_data = (void *)i;
IRQ_HANDLER[i].m_func = default_isr;
}
/* configure interrupts for IRQ mode */
PUT_REG( REG_INTMODE, 0x0);
/* clear any pending interrupts */
PUT_REG( REG_INTPEND, 0x1FFFFF);
lastdec = 0; lastdec = 0;
/* install interrupt handler for timer */
IRQ_HANDLER[INT_TIMER0].m_data = (void *)&timestamp;
IRQ_HANDLER[INT_TIMER0].m_func = timer_isr;
/* configure free running timer 0 */
PUT_REG( REG_TMOD, 0x0);
/* Stop timer 0 */
CLR_REG( REG_TMOD, TM0_RUN);
/* Configure for interval mode */
CLR_REG( REG_TMOD, TM1_TOGGLE);
/*
* Load Timer data register with count down value.
* count_down_val = CFG_SYS_CLK_FREQ/CFG_HZ
*/
PUT_REG( REG_TDATA0, (CFG_SYS_CLK_FREQ / CFG_HZ));
/*
* Enable global interrupt
* Enable timer0 interrupt
*/
CLR_REG( REG_INTMASK, ((1<<INT_GLOBAL) | (1<<INT_TIMER0)));
/* Start timer */
SET_REG( REG_TMOD, TM0_RUN);
#else #else
#error No interrupt_init() defined for this CPU type #error No interrupt_init() defined for this CPU type
#endif #endif
@ -294,40 +373,22 @@ void udelay_masked (unsigned long usec)
#elif defined(CONFIG_S3C4510B) #elif defined(CONFIG_S3C4510B)
#define TMR_OFFSET (0x1000) ulong get_timer (ulong base)
{
return timestamp - base;
}
void udelay (unsigned long usec) void udelay (unsigned long usec)
{ {
u32 rDATA; u32 ticks;
rDATA = t_data_us(usec); ticks = (usec * CFG_HZ) / 1000000;
/* Stop timer 0 */ ticks += get_timer (0);
CLR_REG( REG_TMOD, TM0_RUN);
/* Configure for toggle mode */ while (get_timer (0) < ticks)
SET_REG( REG_TMOD, TM0_TOGGLE); /*NOP*/;
/* Load Timer data register with count down value plus offset */
PUT_REG( REG_TDATA0, rDATA + TMR_OFFSET);
/* Clear timer counter register */
PUT_REG( REG_TCNT0, 0x0);
/* Start timer -- count down timer */
SET_REG( REG_TMOD, TM0_RUN);
/* spin during count down */
while ( GET_REG( REG_TCNT0) > TMR_OFFSET);
/* Stop timer */
CLR_REG( REG_TMOD, TM0_RUN);
}
ulong get_timer (ulong base)
{
return (0xFFFFFFFF - GET_REG( REG_TCNT1)) - base;
} }
#else #else

View File

@ -210,6 +210,11 @@
#define PUT__U8(reg, val) (*((volatile u8 *)(reg)) = (( u8)((val)&0xFF))) #define PUT__U8(reg, val) (*((volatile u8 *)(reg)) = (( u8)((val)&0xFF)))
#define GET__U8(reg) (*((volatile u8 *)(reg))) #define GET__U8(reg) (*((volatile u8 *)(reg)))
#define PUT_LED(val) (PUT_REG(REG_IOPDATA, (~val)&0xFF))
#define GET_LED() ((~GET_REG( REG_IOPDATA)) & 0xFF)
#define SET_LED(val) { u32 led = GET_LED(); led |= 1 << (val); PUT_LED( led); }
#define CLR_LED(val) { u32 led = GET_LED(); led &= ~(1 << (val)); PUT_LED( led); }
/***********************************/ /***********************************/
/* CLOCK CONSTANTS -- 50 MHz Clock */ /* CLOCK CONSTANTS -- 50 MHz Clock */
/***********************************/ /***********************************/
@ -228,4 +233,42 @@
#define TM1_TOGGLE 0x10 /* 0, interval mode */ #define TM1_TOGGLE 0x10 /* 0, interval mode */
#define TM1_OUT_1 0x20 /* Timer 0 Initial TOUT0 value */ #define TM1_OUT_1 0x20 /* Timer 0 Initial TOUT0 value */
/*********************************/
/* INTERRUPT SOURCES */
/*********************************/
#define INT_EXTINT0 0
#define INT_EXTINT1 1
#define INT_EXTINT2 2
#define INT_EXTINT3 3
#define INT_UARTTX0 4
#define INT_UARTRX0 5
#define INT_UARTTX1 6
#define INT_UARTRX1 7
#define INT_GDMA0 8
#define INT_GDMA1 9
#define INT_TIMER0 10
#define INT_TIMER1 11
#define INT_HDLCTXA 12
#define INT_HDLCRXA 13
#define INT_HDLCTXB 14
#define INT_HDLCRXB 15
#define INT_BDMATX 16
#define INT_BDMARX 17
#define INT_MACTX 18
#define INT_MACRX 19
#define INT_IIC 20
#define INT_GLOBAL 21
#define N_IRQS (21)
#ifndef __ASSEMBLER__
struct _irq_handler {
void *m_data;
void (*m_func)( void *data);
};
extern struct _irq_handler IRQ_HANDLER[];
#endif
#endif /* __S3C4510_h */ #endif /* __S3C4510_h */

File diff suppressed because it is too large Load Diff

View File

@ -44,7 +44,9 @@
#define CONFIG_S3C4510B 1 /* it's a S3C4510B chip */ #define CONFIG_S3C4510B 1 /* it's a S3C4510B chip */
#define CONFIG_EVB4510 1 /* on an EVB4510 Board */ #define CONFIG_EVB4510 1 /* on an EVB4510 Board */
#undef CONFIG_USE_IRQ /* don't need them anymore */ #define CONFIG_USE_IRQ
#define CONFIG_STACKSIZE_IRQ (4*1024)
#define CONFIG_STACKSIZE_FIQ (4*1024)
/* /*
* Size of malloc() pool * Size of malloc() pool
@ -63,7 +65,7 @@
/* /*
* select serial console configuration * select serial console configuration
*/ */
#define CONFIG_SERIAL1 2 /* we use Serial line 2, could also use 1 */ #define CONFIG_SERIAL1 1 /* we use Serial line 1, could also use 2 */
/* allow to overwrite serial and ethaddr */ /* allow to overwrite serial and ethaddr */
#define CONFIG_ENV_OVERWRITE #define CONFIG_ENV_OVERWRITE
@ -83,10 +85,9 @@
#define CONFIG_SERVERIP 10.0.0.1 #define CONFIG_SERVERIP 10.0.0.1
#define CONFIG_CMDLINE_TAG /* submit bootargs to kernel */ #define CONFIG_CMDLINE_TAG /* submit bootargs to kernel */
/*#define CONFIG_BOOTDELAY 10*/ #define CONFIG_BOOTDELAY 2
/* args and cmd for uClinux-image @ 0x10020000, ramdisk-image @ 0x100a0000 */ #define CONFIG_BOOTCOMMAND "tftp 100000 uImage"
#define CONFIG_BOOTCOMMAND "bootm 0x10020000 0x100a0000" /* #define CONFIG_BOOTARGS "console=ttyS0,19200 initrd=0x100a0040,530K root=/dev/ram keepinitrd" */
#define CONFIG_BOOTARGS "console=ttyS0,19200 initrd=0x100a0040,530K root=/dev/ram keepinitrd"
#if (CONFIG_COMMANDS & CFG_CMD_KGDB) #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
#define CONFIG_KGDB_BAUDRATE 19200 /* speed to run kgdb serial port */ #define CONFIG_KGDB_BAUDRATE 19200 /* speed to run kgdb serial port */
@ -103,6 +104,10 @@
#define CFG_MAXARGS 16 /* max number of command args */ #define CFG_MAXARGS 16 /* max number of command args */
#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */ #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
#define CONFIG_CMDLINE_TAG /* allow passing of command line args to linux */
#define CONFIG_SETUP_MEMORY_TAGS
#define CONFIG_INITRD_TAG
#define CFG_MEMTEST_START 0x00000000 /* memtest works on */ #define CFG_MEMTEST_START 0x00000000 /* memtest works on */
#define CFG_MEMTEST_END 0x00780000 /* 4 ... 8 MB in DRAM */ #define CFG_MEMTEST_END 0x00780000 /* 4 ... 8 MB in DRAM */
@ -110,7 +115,8 @@
#define CFG_LOAD_ADDR 0x00000000 /* default load address */ #define CFG_LOAD_ADDR 0x00000000 /* default load address */
#define CFG_HZ 50000000 /* decrementer freq: 50 MHz */ #define CFG_SYS_CLK_FREQ 50000000 /* CPU freq: 50 MHz */
#define CFG_HZ 1000 /* decrementer freq: 1 KHz */
/* valid baudrates */ /* valid baudrates */
#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
@ -159,6 +165,6 @@
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x20000) /* environment start address */ #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x20000) /* environment start address */
#define CFG_ENV_SECT_SIZE 0x10000 /* Total Size of Environment Sector */ #define CFG_ENV_SECT_SIZE 0x10000 /* Total Size of Environment Sector */
#define CFG_ENV_SIZE 0x4000 /* max size for environment */ #define CFG_ENV_SIZE 0x1000 /* max size for environment */
#endif /* __CONFIG_H */ #endif /* __CONFIG_H */

View File

@ -40,6 +40,7 @@
#define CONFIG_OMAP 1 /* in a TI OMAP core */ #define CONFIG_OMAP 1 /* in a TI OMAP core */
#define CONFIG_OMAP1610 1 /* which is in a 1610 */ #define CONFIG_OMAP1610 1 /* which is in a 1610 */
#define CONFIG_H2_OMAP1610 1 /* on an H2 Board */ #define CONFIG_H2_OMAP1610 1 /* on an H2 Board */
#define CONFIG_MACH_OMAP_H2 /* Select board mach-type */
/* input clock of PLL */ /* input clock of PLL */
/* the OMAP1610 H2 has 12MHz input clock */ /* the OMAP1610 H2 has 12MHz input clock */

View File

@ -40,6 +40,7 @@
#define CONFIG_OMAP 1 /* in a TI OMAP core */ #define CONFIG_OMAP 1 /* in a TI OMAP core */
#define CONFIG_OMAP1610 1 /* which is in a 1610 */ #define CONFIG_OMAP1610 1 /* which is in a 1610 */
#define CONFIG_INNOVATOROMAP1610 1 /* a Innovator Board */ #define CONFIG_INNOVATOROMAP1610 1 /* a Innovator Board */
#define CONFIG_MACH_OMAP_INNOVATOR /* Select board mach-type */
/* input clock of PLL */ /* input clock of PLL */
/* the OMAP1610 Innovator has 12MHz input clock */ /* the OMAP1610 Innovator has 12MHz input clock */

View File

@ -166,13 +166,13 @@ void do_bootm_linux (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
do_reset (cmdtp, flag, argc, argv); do_reset (cmdtp, flag, argc, argv);
} }
#ifdef CONFIG_B2 #if defined(CONFIG_B2) || defined(CONFIG_EVB4510)
/* /*
*we need to copy the ramdisk to SRAM to let Linux boot *we need to copy the ramdisk to SRAM to let Linux boot
*/ */
memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len); memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
data = ntohl(hdr->ih_load); data = ntohl(hdr->ih_load);
#endif /* CONFIG_B2 */ #endif /* CONFIG_B2 || CONFIG_EVB4510 */
/* /*
* Now check if we have a multifile image * Now check if we have a multifile image