Merge branch 'merge' of git://www.denx.de/git/u-boot-microblaze
This commit is contained in:
commit
8f05a661e9
|
@ -355,19 +355,18 @@ int do_rspr (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
||||||
unsigned int reg = 0;
|
unsigned int reg = 0;
|
||||||
unsigned int val = 0;
|
unsigned int val = 0;
|
||||||
|
|
||||||
reg = (unsigned int)simple_strtoul (argv[1], NULL, 16);
|
if (argc < 2) {
|
||||||
val = (unsigned int)simple_strtoul (argv[2], NULL, 16);
|
|
||||||
if (argc < 1) {
|
|
||||||
printf ("Usage:\n%s\n", cmdtp->usage);
|
printf ("Usage:\n%s\n", cmdtp->usage);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
reg = (unsigned int)simple_strtoul (argv[1], NULL, 16);
|
||||||
|
val = (unsigned int)simple_strtoul (argv[2], NULL, 16);
|
||||||
switch (reg) {
|
switch (reg) {
|
||||||
case 0x1:
|
case 0x1:
|
||||||
if (argc > 2) {
|
if (argc > 2) {
|
||||||
MTS (val, rmsr);
|
MTS (val, rmsr);
|
||||||
NOP;
|
NOP;
|
||||||
MFS (val, rmsr);
|
MFS (val, rmsr);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
MFS (val, rmsr);
|
MFS (val, rmsr);
|
||||||
}
|
}
|
||||||
|
@ -382,6 +381,7 @@ int do_rspr (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
|
||||||
puts ("ESR");
|
puts ("ESR");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
puts ("Unsupported register\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
printf (": 0x%08lx\n", val);
|
printf (": 0x%08lx\n", val);
|
||||||
|
@ -408,10 +408,10 @@ U_BOOT_CMD (fwr, 4, 1, do_fwr,
|
||||||
" 3 - blocking control write\n");
|
" 3 - blocking control write\n");
|
||||||
|
|
||||||
U_BOOT_CMD (rspr, 3, 1, do_rspr,
|
U_BOOT_CMD (rspr, 3, 1, do_rspr,
|
||||||
"rmsr - read/write special purpose register\n",
|
"rspr - read/write special purpose register\n",
|
||||||
"- reg_num [write value] read/write special purpose register\n"
|
"- reg_num [write value] read/write special purpose register\n"
|
||||||
" 0 - MSR - Machine status register\n"
|
" 1 - MSR - Machine status register\n"
|
||||||
" 1 - EAR - Exception address register\n"
|
" 3 - EAR - Exception address register\n"
|
||||||
" 2 - ESR - Exception status register\n");
|
" 5 - ESR - Exception status register\n");
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* (C) Copyright 2007 Michal Simek
|
* (C) Copyright 2007 Michal Simek
|
||||||
*
|
*
|
||||||
* Michal SIMEK <moonstr@monstr.eu>
|
* Michal SIMEK <monstr@monstr.eu>
|
||||||
*
|
*
|
||||||
* See file CREDITS for list of people who contributed to this
|
* See file CREDITS for list of people who contributed to this
|
||||||
* project.
|
* project.
|
||||||
|
|
|
@ -33,15 +33,13 @@ _start:
|
||||||
addi r1, r0, CFG_INIT_SP_OFFSET
|
addi r1, r0, CFG_INIT_SP_OFFSET
|
||||||
addi r1, r1, -4 /* Decrement SP to top of memory */
|
addi r1, r1, -4 /* Decrement SP to top of memory */
|
||||||
/* add opcode instruction for 32bit jump - 2 instruction imm & brai*/
|
/* add opcode instruction for 32bit jump - 2 instruction imm & brai*/
|
||||||
addi r6, r0, 0xb000 /* hex b000 opcode imm */
|
addi r6, r0, 0xb0000000 /* hex b000 opcode imm */
|
||||||
bslli r6, r6, 16 /* shift */
|
|
||||||
swi r6, r0, 0x0 /* reset address */
|
swi r6, r0, 0x0 /* reset address */
|
||||||
swi r6, r0, 0x8 /* user vector exception */
|
swi r6, r0, 0x8 /* user vector exception */
|
||||||
swi r6, r0, 0x10 /* interrupt */
|
swi r6, r0, 0x10 /* interrupt */
|
||||||
swi r6, r0, 0x20 /* hardware exception */
|
swi r6, r0, 0x20 /* hardware exception */
|
||||||
|
|
||||||
addi r6, r0, 0xb808 /* hew b808 opcode brai*/
|
addi r6, r0, 0xb8080000 /* hew b808 opcode brai*/
|
||||||
bslli r6, r6, 16
|
|
||||||
swi r6, r0, 0x4 /* reset address */
|
swi r6, r0, 0x4 /* reset address */
|
||||||
swi r6, r0, 0xC /* user vector exception */
|
swi r6, r0, 0xC /* user vector exception */
|
||||||
swi r6, r0, 0x14 /* interrupt */
|
swi r6, r0, 0x14 /* interrupt */
|
||||||
|
|
|
@ -33,10 +33,17 @@ void reset_timer (void)
|
||||||
timestamp = 0;
|
timestamp = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CFG_TIMER_0
|
||||||
ulong get_timer (ulong base)
|
ulong get_timer (ulong base)
|
||||||
{
|
{
|
||||||
return (timestamp - base);
|
return (timestamp - base);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
ulong get_timer (ulong base)
|
||||||
|
{
|
||||||
|
return (timestamp++ - base);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void set_timer (ulong t)
|
void set_timer (ulong t)
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#ifdef CONFIG_MICROBLAZE
|
#ifdef CONFIG_XILINX_UARTLITE
|
||||||
|
|
||||||
#include <asm/serial_xuartlite.h>
|
#include <asm/serial_xuartlite.h>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* (C) Copyright 2007 Czech Technical University.
|
* (C) Copyright 2007 Michal Simek
|
||||||
*
|
*
|
||||||
* Michal SIMEK <monstr@seznam.cz>
|
* Michal SIMEK <monstr@monstr.eu>
|
||||||
*
|
*
|
||||||
* See file CREDITS for list of people who contributed to this
|
* See file CREDITS for list of people who contributed to this
|
||||||
* project.
|
* project.
|
||||||
|
@ -32,6 +32,7 @@
|
||||||
#define CONFIG_ML401 1 /* ML401 Board */
|
#define CONFIG_ML401 1 /* ML401 Board */
|
||||||
|
|
||||||
/* uart */
|
/* uart */
|
||||||
|
#define CONFIG_XILINX_UARTLITE
|
||||||
#define CONFIG_SERIAL_BASE XILINX_UART_BASEADDR
|
#define CONFIG_SERIAL_BASE XILINX_UART_BASEADDR
|
||||||
#define CONFIG_BAUDRATE XILINX_UART_BAUDRATE
|
#define CONFIG_BAUDRATE XILINX_UART_BAUDRATE
|
||||||
#define CFG_BAUDRATE_TABLE { CONFIG_BAUDRATE }
|
#define CFG_BAUDRATE_TABLE { CONFIG_BAUDRATE }
|
||||||
|
@ -58,6 +59,7 @@
|
||||||
#define CFG_TIMER_0_IRQ XILINX_TIMER_IRQ
|
#define CFG_TIMER_0_IRQ XILINX_TIMER_IRQ
|
||||||
#define FREQUENCE XILINX_CLOCK_FREQ
|
#define FREQUENCE XILINX_CLOCK_FREQ
|
||||||
#define CFG_TIMER_0_PRELOAD ( FREQUENCE/1000 )
|
#define CFG_TIMER_0_PRELOAD ( FREQUENCE/1000 )
|
||||||
|
#define CONFIG_XILINX_CLOCK_FREQ XILINX_CLOCK_FREQ
|
||||||
|
|
||||||
/* FSL */
|
/* FSL */
|
||||||
#define CFG_FSL_2
|
#define CFG_FSL_2
|
||||||
|
@ -145,6 +147,16 @@
|
||||||
#define CFG_FLASH_PROTECTION /* hardware flash protection */
|
#define CFG_FLASH_PROTECTION /* hardware flash protection */
|
||||||
#endif /* !FLASH */
|
#endif /* !FLASH */
|
||||||
|
|
||||||
|
/* system ace */
|
||||||
|
#ifdef XILINX_SYSACE_BASEADDR
|
||||||
|
#define CONFIG_SYSTEMACE
|
||||||
|
/* #define DEBUG_SYSTEMACE */
|
||||||
|
#define SYSTEMACE_CONFIG_FPGA
|
||||||
|
#define CFG_SYSTEMACE_BASE XILINX_SYSACE_BASEADDR
|
||||||
|
#define CFG_SYSTEMACE_WIDTH XILINX_SYSACE_MEM_WIDTH
|
||||||
|
#define CONFIG_DOS_PARTITION
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* BOOTP options
|
* BOOTP options
|
||||||
*/
|
*/
|
||||||
|
@ -153,28 +165,21 @@
|
||||||
#define CONFIG_BOOTP_GATEWAY
|
#define CONFIG_BOOTP_GATEWAY
|
||||||
#define CONFIG_BOOTP_HOSTNAME
|
#define CONFIG_BOOTP_HOSTNAME
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#include <config_cmd_default.h>
|
#include <config_cmd_default.h>
|
||||||
|
|
||||||
#define CONFIG_CMD_ASKENV
|
#define CONFIG_CMD_ASKENV
|
||||||
#define CONFIG_CMD_AUTOSCRIPT
|
|
||||||
#define CONFIG_CMD_BDI
|
|
||||||
#define CONFIG_CMD_CACHE
|
#define CONFIG_CMD_CACHE
|
||||||
#define CONFIG_CMD_EXT2
|
|
||||||
#define CONFIG_CMD_FAT
|
|
||||||
#define CONFIG_CMD_IMI
|
|
||||||
#define CONFIG_CMD_IRQ
|
#define CONFIG_CMD_IRQ
|
||||||
#define CONFIG_CMD_LOADB
|
|
||||||
#define CONFIG_CMD_LOADS
|
|
||||||
#define CONFIG_CMD_MEMORY
|
|
||||||
#define CONFIG_CMD_MISC
|
|
||||||
#define CONFIG_CMD_MFSL
|
#define CONFIG_CMD_MFSL
|
||||||
#define CONFIG_CMD_NET
|
|
||||||
#define CONFIG_CMD_PING
|
#define CONFIG_CMD_PING
|
||||||
#define CONFIG_CMD_RUN
|
|
||||||
|
#if defined(CONFIG_SYSTEMACE)
|
||||||
|
#define CONFIG_CMD_EXT2
|
||||||
|
#define CONFIG_CMD_FAT
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(FLASH)
|
#if defined(FLASH)
|
||||||
#define CONFIG_CMD_ECHO
|
#define CONFIG_CMD_ECHO
|
||||||
|
@ -186,6 +191,8 @@
|
||||||
#define CONFIG_CMD_ENV
|
#define CONFIG_CMD_ENV
|
||||||
#define CONFIG_CMD_SAVES
|
#define CONFIG_CMD_SAVES
|
||||||
#endif
|
#endif
|
||||||
|
#else
|
||||||
|
#undef CONFIG_CMD_FLASH
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CMD_JFFS2)
|
#if defined(CONFIG_CMD_JFFS2)
|
||||||
|
@ -220,14 +227,6 @@
|
||||||
#define CFG_USR_EXCEP /* user exception */
|
#define CFG_USR_EXCEP /* user exception */
|
||||||
#define CFG_HZ 1000
|
#define CFG_HZ 1000
|
||||||
|
|
||||||
/* system ace */
|
|
||||||
#define CONFIG_SYSTEMACE
|
|
||||||
/* #define DEBUG_SYSTEMACE */
|
|
||||||
#define SYSTEMACE_CONFIG_FPGA
|
|
||||||
#define CFG_SYSTEMACE_BASE XILINX_SYSACE_BASEADDR
|
|
||||||
#define CFG_SYSTEMACE_WIDTH XILINX_SYSACE_MEM_WIDTH
|
|
||||||
#define CONFIG_DOS_PARTITION
|
|
||||||
|
|
||||||
#define CONFIG_PREBOOT "echo U-BOOT for ML401;setenv preboot;echo"
|
#define CONFIG_PREBOOT "echo U-BOOT for ML401;setenv preboot;echo"
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS "unlock=yes\0" /* hardware flash protection */\
|
#define CONFIG_EXTRA_ENV_SETTINGS "unlock=yes\0" /* hardware flash protection */\
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
#define CFG_MALLOC_LEN (256 << 10) /* Reserve 256 kB for malloc */
|
#define CFG_MALLOC_LEN (256 << 10) /* Reserve 256 kB for malloc */
|
||||||
#define CFG_MALLOC_BASE (CFG_MONITOR_BASE - (1024 * 1024))
|
#define CFG_MALLOC_BASE (CFG_MONITOR_BASE - (1024 * 1024))
|
||||||
|
|
||||||
|
#define CONFIG_XILINX_UARTLITE
|
||||||
#define CONFIG_BAUDRATE 115200
|
#define CONFIG_BAUDRATE 115200
|
||||||
#define CFG_BAUDRATE_TABLE { 115200 }
|
#define CFG_BAUDRATE_TABLE { 115200 }
|
||||||
|
|
||||||
|
@ -55,21 +56,16 @@
|
||||||
#define MICROBLAZE_SYSREG_BASE_ADDR 0xFFFFA000
|
#define MICROBLAZE_SYSREG_BASE_ADDR 0xFFFFA000
|
||||||
#define MICROBLAZE_SYSREG_RECONFIGURE (1 << 0)
|
#define MICROBLAZE_SYSREG_RECONFIGURE (1 << 0)
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* BOOTP options
|
|
||||||
*/
|
|
||||||
#define CONFIG_BOOTP_BOOTFILESIZE
|
|
||||||
#define CONFIG_BOOTP_BOOTPATH
|
|
||||||
#define CONFIG_BOOTP_GATEWAY
|
|
||||||
#define CONFIG_BOOTP_HOSTNAME
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Command line configuration.
|
* Command line configuration.
|
||||||
*/
|
*/
|
||||||
#include <config_cmd_default.h>
|
#include <config_cmd_default.h>
|
||||||
|
|
||||||
|
#undef CONFIG_CMD_BDI
|
||||||
|
#undef CONFIG_CMD_ENV
|
||||||
|
#undef CONFIG_CMD_MEMORY
|
||||||
|
#undef CONFIG_CMD_NET
|
||||||
|
#undef CONFIG_CMD_MISC
|
||||||
|
|
||||||
#define CFG_UART1_BASE (0xFFFF2000)
|
#define CFG_UART1_BASE (0xFFFF2000)
|
||||||
#define CONFIG_SERIAL_BASE CFG_UART1_BASE
|
#define CONFIG_SERIAL_BASE CFG_UART1_BASE
|
||||||
|
@ -108,4 +104,7 @@
|
||||||
#define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
|
#define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
|
||||||
#define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
|
#define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
|
||||||
|
|
||||||
|
#define XILINX_CLOCK_FREQ 50000000
|
||||||
|
#define CONFIG_XILINX_CLOCK_FREQ XILINX_CLOCK_FREQ
|
||||||
|
|
||||||
#endif /* __CONFIG_H */
|
#endif /* __CONFIG_H */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* (C) Copyright 2007 Czech Technical University.
|
* (C) Copyright 2007 Michal Simek
|
||||||
*
|
*
|
||||||
* Michal SIMEK <monstr@monstr.eu>
|
* Michal SIMEK <monstr@monstr.eu>
|
||||||
*
|
*
|
||||||
|
@ -31,6 +31,7 @@
|
||||||
#define CONFIG_XUPV2P 1
|
#define CONFIG_XUPV2P 1
|
||||||
|
|
||||||
/* uart */
|
/* uart */
|
||||||
|
#define CONFIG_XILINX_UARTLITE
|
||||||
#define CONFIG_SERIAL_BASE XILINX_UART_BASEADDR
|
#define CONFIG_SERIAL_BASE XILINX_UART_BASEADDR
|
||||||
#define CONFIG_BAUDRATE XILINX_UART_BAUDRATE
|
#define CONFIG_BAUDRATE XILINX_UART_BAUDRATE
|
||||||
#define CFG_BAUDRATE_TABLE { CONFIG_BAUDRATE }
|
#define CFG_BAUDRATE_TABLE { CONFIG_BAUDRATE }
|
||||||
|
|
|
@ -26,9 +26,17 @@
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
|
||||||
|
#ifdef CFG_TIMER_0
|
||||||
void udelay (unsigned long usec)
|
void udelay (unsigned long usec)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
i = get_timer (0);
|
i = get_timer (0);
|
||||||
while ((get_timer (0) - i) < (usec / 1000)) ;
|
while ((get_timer (0) - i) < (usec / 1000)) ;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
void udelay (unsigned long usec)
|
||||||
|
{
|
||||||
|
unsigned int i;
|
||||||
|
for (i = 0; i < (usec * CONFIG_XILINX_CLOCK_FREQ / 10000000); i++);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue