[Blackfin][PATCH] code cleanup
authorAubrey Li <aubrey.adi@gmail.com>
Sun, 11 Mar 2007 16:25:14 +0000 (00:25 +0800)
committerAubrey Li <aubrey.adi@gmail.com>
Sun, 11 Mar 2007 16:25:14 +0000 (00:25 +0800)
14 files changed:
Makefile
board/bf533-ezkit/flash.c
board/bf533-stamp/bf533-stamp.c
board/bf533-stamp/spi.c
cpu/bf533/cache.S
cpu/bf533/cpu.c
cpu/bf533/flush.S
cpu/bf533/init_sdram.S
cpu/bf533/init_sdram_bootrom_initblock.S
cpu/bf533/serial.c
cpu/bf533/traps.c
include/configs/bf533-ezkit.h
lib_blackfin/bf533_string.c
lib_blackfin/board.c

index 8bb82c5f8eca480f0ca0efaa553b34ba9e908877..9839f7c25f87fb57e3a859bd31c8b65b459ca3f5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2391,7 +2391,7 @@ clean:
        rm -f $(obj)board/netstar/*.srec $(obj)board/netstar/*.bin
        rm -f $(obj)board/trab/trab_fkt $(obj)board/voiceblue/eeprom
        rm -f $(obj)board/integratorap/u-boot.lds $(obj)board/integratorcp/u-boot.lds
-       rm -f $(obj)board/bf*/u-boot.lds
+       rm -f $(obj)board/bf533-ezkit/u-boot.lds $(obj)board/bf533-stamp/u-boot.lds
        rm -f $(obj)include/bmp_logo.h
        rm -f $(obj)nand_spl/u-boot-spl $(obj)nand_spl/u-boot-spl.map
 
index 1b56d5bc6a6886b2e09401a5b30374a2cbd37025..067a2609065a3865b14be06e15cb44ab5bd7ab4b 100644 (file)
@@ -26,6 +26,7 @@
  * MA 02111-1307 USA
  */
 
+#include <asm/io.h>
 #include "flash-defines.h"
 
 void flash_reset(void)
@@ -282,9 +283,9 @@ int write_flash(long nOffset, int nValue)
        long addr;
 
        addr = (CFG_FLASH_BASE + nOffset);
-       __builtin_bfin_ssync();
+       sync();
        *(unsigned volatile short *)addr = nValue;
-       __builtin_bfin_ssync();
+       sync();
        if (poll_toggle_bit(nOffset) < 0)
                return FLASH_FAIL;
        return FLASH_SUCCESS;
@@ -297,9 +298,9 @@ int read_flash(long nOffset, int *pnValue)
 
        if (nOffset != 0x2)
                reset_flash();
-       __builtin_bfin_ssync();
+       sync();
        nValue = *(volatile unsigned short *)addr;
-       __builtin_bfin_ssync();
+       sync();
        *pnValue = nValue;
        return TRUE;
 }
index 3e074e3a1b23f56f058980bdb61fc8e0895e8bb6..2f6e75187b1659999e68d4e0aafa4fcb659e3dfe 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <common.h>
 #include <asm/mem_init.h>
+#include <asm/io.h>
 #include "bf533-stamp.h"
 
 #define STATUS_LED_OFF 0
@@ -74,9 +75,9 @@ void swap_to(int device_id)
 
        if (device_id == ETHERNET) {
                *pFIO_DIR = PF0;
-               __builtin_bfin_ssync();
+               sync();
                *pFIO_FLAG_S = PF0;
-               __builtin_bfin_ssync();
+               sync();
        } else if (device_id == FLASH) {
                *pFIO_DIR = (PF4 | PF3 | PF2 | PF1 | PF0);
                *pFIO_FLAG_S = (PF4 | PF3 | PF2);
@@ -86,7 +87,7 @@ void swap_to(int device_id)
                *pFIO_EDGE = (PF8 | PF7 | PF6 | PF5);
                *pFIO_INEN = (PF8 | PF7 | PF6 | PF5);
                *pFIO_FLAG_D = (PF4 | PF3 | PF2);
-               __builtin_bfin_ssync();
+               sync();
        } else {
                printf("Unknown bank to switch\n");
        }
@@ -153,15 +154,15 @@ void cf_outb(unsigned char val, volatile unsigned char *addr)
         */
        *pFIO_FLAG_S = CF_PF0;
        *pFIO_FLAG_C = CF_PF1;
-       __builtin_bfin_ssync();
+       sync();
 
        *(addr) = val;
-       __builtin_bfin_ssync();
+       sync();
 
        /* Setback PF1 PF0 to 0 0 to address external
         * memory banks  */
        *(volatile unsigned short *)pFIO_FLAG_C = CF_PF1_PF0;
-       __builtin_bfin_ssync();
+       sync();
 }
 
 unsigned char cf_inb(volatile unsigned char *addr)
@@ -170,13 +171,13 @@ unsigned char cf_inb(volatile unsigned char *addr)
 
        *pFIO_FLAG_S = CF_PF0;
        *pFIO_FLAG_C = CF_PF1;
-       __builtin_bfin_ssync();
+       sync();
 
        c = *(addr);
-       __builtin_bfin_ssync();
+       sync();
 
        *pFIO_FLAG_C = CF_PF1_PF0;
-       __builtin_bfin_ssync();
+       sync();
 
        return c;
 }
@@ -187,15 +188,15 @@ void cf_insw(unsigned short *sect_buf, unsigned short *addr, int words)
 
        *pFIO_FLAG_S = CF_PF0;
        *pFIO_FLAG_C = CF_PF1;
-       __builtin_bfin_ssync();
+       sync();
 
        for (i = 0; i < words; i++) {
                *(sect_buf + i) = *(addr);
-               __builtin_bfin_ssync();
+               sync();
        }
 
        *pFIO_FLAG_C = CF_PF1_PF0;
-       __builtin_bfin_ssync();
+       sync();
 }
 
 void cf_outsw(unsigned short *addr, unsigned short *sect_buf, int words)
@@ -204,15 +205,15 @@ void cf_outsw(unsigned short *addr, unsigned short *sect_buf, int words)
 
        *pFIO_FLAG_S = CF_PF0;
        *pFIO_FLAG_C = CF_PF1;
-       __builtin_bfin_ssync();
+       sync();
 
        for (i = 0; i < words; i++) {
                *(addr) = *(sect_buf + i);
-               __builtin_bfin_ssync();
+               sync();
        }
 
        *pFIO_FLAG_C = CF_PF1_PF0;
-       __builtin_bfin_ssync();
+       sync();
 }
 #endif
 
@@ -233,7 +234,7 @@ void stamp_led_set(int LED1, int LED2, int LED3)
                *pFIO_FLAG_S = PF4;
        else
                *pFIO_FLAG_C = PF4;
-       __builtin_bfin_ssync();
+       sync();
 }
 
 void show_boot_progress(int status)
index 1b585aac954fc840727f56033386debfca9a04b8..d30750faa3b798b661fbd78d4e9c6ed0069764e9 100644 (file)
@@ -3,6 +3,7 @@
  ****************************************************************************/
 #include <common.h>
 #include <linux/ctype.h>
+#include <asm/io.h>
 
 #if defined(CONFIG_SPI)
 
@@ -152,7 +153,7 @@ void SendSingleCommand(const int iCommand)
 
        /*sends the actual command to the SPI TX register */
        *pSPI_TDBR = iCommand;
-       __builtin_bfin_ssync();
+       sync();
 
        /*The SPI status register will be polled to check the SPIF bit */
        Wait_For_SPIF();
@@ -173,7 +174,7 @@ void SetupSPI(const int spi_setting)
        *pSPI_FLG = 0xFB04;
        *pSPI_BAUD = CONFIG_SPI_BAUD;
        *pSPI_CTL = spi_setting;
-       __builtin_bfin_ssync();
+       sync();
 }
 
 void SPI_OFF(void)
@@ -182,7 +183,7 @@ void SPI_OFF(void)
        *pSPI_CTL = 0x0400;     /* disable SPI */
        *pSPI_FLG = 0;
        *pSPI_BAUD = 0;
-       __builtin_bfin_ssync();
+       sync();
        udelay(CONFIG_CCLK_HZ / 50000000);
 
 }
@@ -240,10 +241,10 @@ char ReadStatusRegister(void)
        SetupSPI((COMMON_SPI_SETTINGS | TIMOD01));      /* Turn on the SPI */
 
        *pSPI_TDBR = SPI_RDSR;  /* send instruction to read status register */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the instruction has been sent */
        *pSPI_TDBR = 0;         /*send dummy to receive the status register */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the data has been sent */
        status_register = *pSPI_RDBR;   /*read the status register */
 
@@ -304,18 +305,18 @@ ERROR_CODE EraseBlock(int nBlock)
        /* Send the erase block command to the flash followed by the 24 address  */
        /* to point to the start of a sector. */
        *pSPI_TDBR = SPI_SE;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();
        ShiftValue = (ulSectorOff >> 16);       /* Send the highest byte of the 24 bit address at first */
        *pSPI_TDBR = ShiftValue;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
        ShiftValue = (ulSectorOff >> 8);        /* Send the middle byte of the 24 bit address  at second */
        *pSPI_TDBR = ShiftValue;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
        *pSPI_TDBR = ulSectorOff;       /* Send the lowest byte of the 24 bit address finally */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
 
        /*Turns off the SPI */
@@ -350,25 +351,25 @@ ERROR_CODE ReadData(unsigned long ulStart, long lCount, int *pnData)
        SetupSPI((COMMON_SPI_SETTINGS | TIMOD01));
 
        *pSPI_TDBR = SPI_READ;  /* Send the read command to SPI device */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
        ShiftValue = (ulStart >> 16);   /* Send the highest byte of the 24 bit address at first */
        *pSPI_TDBR = ShiftValue;        /* Send the byte to the SPI device */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
        ShiftValue = (ulStart >> 8);    /* Send the middle byte of the 24 bit address  at second */
        *pSPI_TDBR = ShiftValue;        /* Send the byte to the SPI device */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
        *pSPI_TDBR = ulStart;   /* Send the lowest byte of the 24 bit address finally */
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /* Wait until the instruction has been sent */
 
        /* After the SPI device address has been placed on the MOSI pin the data can be */
        /* received on the MISO pin. */
        for (i = 0; i < lCount; i++) {
                *pSPI_TDBR = 0; /*send dummy */
-               __builtin_bfin_ssync();
+               sync();
                while (!(*pSPI_STAT & RXS)) ;
                *cnData++ = *pSPI_RDBR; /*read  */
 
@@ -405,26 +406,26 @@ ERROR_CODE WriteFlash(unsigned long ulStartAddr, long lTransferCount,
                /* Third, the 24 bit address will be shifted out the SPI MOSI bytewise. */
                SetupSPI((COMMON_SPI_SETTINGS | TIMOD01));      /* Turns the SPI on */
        *pSPI_TDBR = SPI_PP;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the instruction has been sent */
        ulWAddr = (ulStartAddr >> 16);
        *pSPI_TDBR = ulWAddr;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the instruction has been sent */
        ulWAddr = (ulStartAddr >> 8);
        *pSPI_TDBR = ulWAddr;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the instruction has been sent */
        ulWAddr = ulStartAddr;
        *pSPI_TDBR = ulWAddr;
-       __builtin_bfin_ssync();
+       sync();
        Wait_For_SPIF();        /*wait until the instruction has been sent */
        /* Fourth, maximum number of 256 bytes will be taken from the Buffer */
        /* and sent to the SPI device. */
        for (i = 0; (i < lTransferCount) && (i < 256); i++, lWTransferCount++) {
                iData = *temp;
                *pSPI_TDBR = iData;
-               __builtin_bfin_ssync();
+               sync();
                Wait_For_SPIF();        /*wait until the instruction has been sent */
                temp++;
        }
index 5dcc24fd52f6843e7b34efb4a725eb012d934b68..03aebe4b4c596a828d70263280b62acecbbf0225 100644 (file)
@@ -11,7 +11,7 @@ ENTRY(_blackfin_icache_flush_range)
        P0 = R2;
        P1 = R1;
        CSYNC;
-       1:
+1:
        IFLUSH[P0++];
        CC = P0 < P1(iu);
        IF CC JUMP 1b(bp);
@@ -41,10 +41,10 @@ ENTRY(_invalidate_entire_icache)
        P0.H = (IMEM_CONTROL >> 16);
        R7 =[P0];
 
-/*
- * Clear the IMC bit , All valid bits in the instruction
- * cache are set to the invalid state
- */
+       /*
       * Clear the IMC bit , All valid bits in the instruction
       * cache are set to the invalid state
       */
        BITCLR(R7, IMC_P);
        CLI R6;
        /* SSYNC required before invalidating cache. */
@@ -80,10 +80,10 @@ ENTRY(_dcache_invalidate)
        P0.H = (DMEM_CONTROL >> 16);
        R7 =[P0];
 
-/*
- * Clear the DMC[1:0] bits, All valid bits in the data
- * cache are set to the invalid state
- */
+       /*
       * Clear the DMC[1:0] bits, All valid bits in the data
       * cache are set to the invalid state
       */
        BITCLR(R7, DMC0_P);
        BITCLR(R7, DMC1_P);
        CLI R6;
@@ -118,11 +118,11 @@ ENTRY(_blackfin_dcache_invalidate_range)
        CC = P0 < P1(iu);
        IF CC JUMP 1b(bp);
 
-/*
- * If the data crosses a cache line, then we'll be pointing to
- * the last cache line, but won't have flushed/invalidated it yet, so do
- * one more.
- */
+       /*
       * If the data crosses a cache line, then we'll be pointing to
       * the last cache line, but won't have flushed/invalidated it yet, so do
       * one more.
       */
        FLUSHINV[P0];
        SSYNC;
        RTS;
index bd393d597f9c4143eefa184739ea22b284bb1f69..ac8ec517ff63c1145b838234d379c38a8316f2e0 100644 (file)
@@ -30,6 +30,7 @@
 #include <command.h>
 #include <asm/entry.h>
 #include <asm/cplb.h>
+#include <asm/io.h>
 
 #define CACHE_ON 1
 #define CACHE_OFF 0
 extern unsigned int icplb_table[page_descriptor_table_size][2];
 extern unsigned int dcplb_table[page_descriptor_table_size][2];
 
-#ifdef DEBUG
-#define pr_debug(fmt,arg...)  printf(fmt,##arg)
-#else
-static inline int
-    __attribute__ ((format(printf, 1, 2))) pr_debug(const char *fmt, ...)
-{
-       return 0;
-}
-#endif
-
 int do_reset(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
 {
        __asm__ __volatile__("cli r3;" "P0 = %0;" "JUMP (P0);"::"r"(L1_ISRAM)
@@ -70,10 +61,6 @@ void icache_enable(void)
 {
        unsigned int *I0, *I1;
        int i, j = 0;
-#ifdef __ADSPBF537__
-       if ((*pCHIPID >> 28) < 2)
-               return;
-#endif
 
        /* Before enable icache, disable it first */
        icache_disable();
@@ -83,7 +70,7 @@ void icache_enable(void)
        /* make sure the locked ones go in first */
        for (i = 0; i < page_descriptor_table_size; i++) {
                if (CPLB_LOCK & icplb_table[i][1]) {
-                       pr_debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
+                       debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
                                 icplb_table[i][0], icplb_table[i][1]);
                        *I0++ = icplb_table[i][0];
                        *I1++ = icplb_table[i][1];
@@ -93,7 +80,7 @@ void icache_enable(void)
 
        for (i = 0; i < page_descriptor_table_size; i++) {
                if (!(CPLB_LOCK & icplb_table[i][1])) {
-                       pr_debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
+                       debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
                                 icplb_table[i][0], icplb_table[i][1]);
                        *I0++ = icplb_table[i][0];
                        *I1++ = icplb_table[i][1];
@@ -107,31 +94,27 @@ void icache_enable(void)
        /* Fill the rest with invalid entry */
        if (j <= 15) {
                for (; j <= 16; j++) {
-                       pr_debug("filling %i with 0", j);
+                       debug("filling %i with 0", j);
                        *I1++ = 0x0;
                }
 
        }
 
        cli();
-       __builtin_bfin_ssync();
+       sync();
        asm(" .align 8; ");
        *(unsigned int *)IMEM_CONTROL = IMC | ENICPLB;
-       __builtin_bfin_ssync();
+       sync();
        sti();
 }
 
 void icache_disable(void)
 {
-#ifdef __ADSPBF537__
-       if ((*pCHIPID >> 28) < 2)
-               return;
-#endif
        cli();
-       __builtin_bfin_ssync();
+       sync();
        asm(" .align 8; ");
        *(unsigned int *)IMEM_CONTROL &= ~(IMC | ENICPLB);
-       __builtin_bfin_ssync();
+       sync();
        sti();
 }
 
@@ -160,20 +143,20 @@ void dcache_enable(void)
        /* make sure the locked ones go in first */
        for (i = 0; i < page_descriptor_table_size; i++) {
                if (CPLB_LOCK & dcplb_table[i][1]) {
-                       pr_debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
+                       debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
                                 dcplb_table[i][0], dcplb_table[i][1]);
                        *I0++ = dcplb_table[i][0];
                        *I1++ = dcplb_table[i][1];
                        j++;
                } else {
-                       pr_debug("skip   %02i %02i 0x%08x 0x%08x\n", i, j,
+                       debug("skip   %02i %02i 0x%08x 0x%08x\n", i, j,
                                 dcplb_table[i][0], dcplb_table[i][1]);
                }
        }
 
        for (i = 0; i < page_descriptor_table_size; i++) {
                if (!(CPLB_LOCK & dcplb_table[i][1])) {
-                       pr_debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
+                       debug("adding %02i %02i 0x%08x 0x%08x\n", i, j,
                                 dcplb_table[i][0], dcplb_table[i][1]);
                        *I0++ = dcplb_table[i][0];
                        *I1++ = dcplb_table[i][1];
@@ -187,33 +170,32 @@ void dcache_enable(void)
        /* Fill the rest with invalid entry */
        if (j <= 15) {
                for (; j <= 16; j++) {
-                       pr_debug("filling %i with 0", j);
+                       debug("filling %i with 0", j);
                        *I1++ = 0x0;
                }
        }
 
        cli();
        temp = *(unsigned int *)DMEM_CONTROL;
-       __builtin_bfin_ssync();
+       sync();
        asm(" .align 8; ");
        *(unsigned int *)DMEM_CONTROL =
            ACACHE_BCACHE | ENDCPLB | PORT_PREF0 | temp;
-       __builtin_bfin_ssync();
+       sync();
        sti();
 }
 
 void dcache_disable(void)
 {
-
        unsigned int *I0, *I1;
        int i;
 
        cli();
-       __builtin_bfin_ssync();
+       sync();
        asm(" .align 8; ");
        *(unsigned int *)DMEM_CONTROL &=
            ~(ACACHE_BCACHE | ENDCPLB | PORT_PREF0);
-       __builtin_bfin_ssync();
+       sync();
        sti();
 
        /* after disable dcache,
index 58fe4c84b446a94be56539625dcc8f37ffa5ec7d..4a6c64b2649eba4799b605180b889e13f019f404 100644 (file)
@@ -59,7 +59,7 @@ ENTRY(_icplb_flush)
        [--SP] = LC1;
        [--SP] = LT1;
        [--SP] = LB1;
-       
+
        /* If it's a 1K or 4K page, then it's quickest to
         * just systematically flush all the addresses in
         * the page, regardless of whether they're in the
@@ -101,7 +101,7 @@ ENTRY(_icplb_flush)
         * sub-bank, looking for dirty, valid tags that match our
         * address prefix.
         */
-       
+
        P5.L = (ITEST_COMMAND & 0xFFFF);
        P5.H = (ITEST_COMMAND >> 16);
        P4.L = (ITEST_DATA0 & 0xFFFF);
@@ -119,7 +119,7 @@ ENTRY(_icplb_flush)
         * fetching tags, so we only have to set Set, Bank,
         * Sub-bank and Way.
         */
-       
+
        P2 = 4;
        LSETUP (ifs1, ife1) LC1 = P2;
 ifs1:  P0 = 32;                /* iterate over all sets*/
@@ -180,8 +180,10 @@ iflush_whole_page:
        SSYNC;
        IFLUSH [P0++];          /* because CSYNC can't end loops.*/
        LSETUP (isall, ieall) LC0 = P1;
-isall:IFLUSH [P0++];
-ieall: NOP;    
+isall:
+       IFLUSH [P0++];
+ieall:
+       NOP;
        SSYNC;
        JUMP ifinished;
 
@@ -236,7 +238,7 @@ ENTRY(_dcplb_flush)
        [--SP] = LC1;
        [--SP] = LT1;
        [--SP] = LB1;
-       
+
        /* If it's a 1K or 4K page, then it's quickest to
         * just systematically flush all the addresses in
         * the page, regardless of whether they're in the
@@ -250,9 +252,9 @@ ENTRY(_dcplb_flush)
 
        /* We're only interested in the page's size, so extract
         * this from the CPLB (bits 17:16), and scale to give an
-        * offset into the page_size and page_prefix tables.    
+        * offset into the page_size and page_prefix tables.
         */
-               
+
        R1 <<= 14;
        R1 >>= 30;
        R1 <<= 2;
@@ -298,13 +300,13 @@ bank_chosen:
         * R1 = Page length (actually, offset into size/prefix tables)
         * R2 = Bank select mask
         * R3 = sub-bank deposit values
-        *
+        *
         * The cache has 2 Ways, and 64 sets, so we iterate through
         * the sets, accessing the tag for each Way, for our Bank and
         * sub-bank, looking for dirty, valid tags that match our
         * address prefix.
         */
-       
+
        P5.L = (DTEST_COMMAND & 0xFFFF);
        P5.H = (DTEST_COMMAND >> 16);
        P4.L = (DTEST_DATA0 & 0xFFFF);
@@ -323,7 +325,7 @@ bank_chosen:
         * fetching tags, so we only have to set Set, Bank,
         * Sub-bank and Way.
         */
-       
+
        P2 = 2;
        LSETUP (fs1, fe1) LC1 = P2;
 fs1:   P0 = 64;                /* iterate over all sets*/
index 1aae9e30f96b95fa36a073383a2150826b51463f..e1a8e2ff88e07e6440687e7d083d99b155b5808f 100644 (file)
@@ -109,14 +109,14 @@ check_again:
        r0.l = (AMBCTL1VAL & 0xFFFF);
        [p2] = r0;
        ssync;
-       
+
        p2.h = (EBIU_AMBCTL0 >> 16);
        p2.l = (EBIU_AMBCTL0 & 0xFFFF);
        r0.h = (AMBCTL0VAL >> 16);
        r0.l = (AMBCTL0VAL & 0xFFFF);
        [p2] = r0;
        ssync;
-       
+
        p2.h = (EBIU_AMGCTL >> 16);
        p2.l = (EBIU_AMGCTL & 0xffff);
        r0 = AMGCTLVAL;
index 21cfeec33e6e3ac146b29575ffbb40da220d172e..99ed92032877eb55b93127996d5cbf07183d19c1 100644 (file)
@@ -109,14 +109,14 @@ check_again:
        r0.l = (AMBCTL1VAL & 0xFFFF);
        [p2] = r0;
        ssync;
-       
+
        p2.h = (EBIU_AMBCTL0 >> 16);
        p2.l = (EBIU_AMBCTL0 & 0xFFFF);
        r0.h = (AMBCTL0VAL >> 16);
        r0.l = (AMBCTL0VAL & 0xFFFF);
        [p2] = r0;
        ssync;
-       
+
        p2.h = (EBIU_AMGCTL >> 16);
        p2.l = (EBIU_AMGCTL & 0xffff);
        r0 = AMGCTLVAL;
index eb552056a48b9718a1be49f8d29c9c7608a61ac1..11a46be9647b6e7157b2a57ad0e6f8c2a514b0b5 100644 (file)
 #include <asm/bitops.h>
 #include <asm/delay.h>
 #include <asm/uaccess.h>
+#include <asm/io.h>
 #include "bf533_serial.h"
 
+DECLARE_GLOBAL_DATA_PTR;
+
 unsigned long pll_div_fact;
 
 void calc_baud(void)
@@ -84,29 +87,29 @@ void serial_setbrg(void)
 
        /* Enable UART */
        *pUART_GCTL |= UART_GCTL_UCEN;
-       __builtin_bfin_ssync();
+       sync();
 
        /* Set DLAB in LCR to Access DLL and DLH */
        ACCESS_LATCH;
-       __builtin_bfin_ssync();
+       sync();
 
        *pUART_DLL = hw_baud_table[i].dl_low;
-       __builtin_bfin_ssync();
+       sync();
        *pUART_DLH = hw_baud_table[i].dl_high;
-       __builtin_bfin_ssync();
+       sync();
 
        /* Clear DLAB in LCR to Access THR RBR IER */
        ACCESS_PORT_IER;
-       __builtin_bfin_ssync();
+       sync();
 
        /* Enable  ERBFI and ELSI interrupts
         * to poll SIC_ISR register*/
        *pUART_IER = UART_IER_ELSI | UART_IER_ERBFI | UART_IER_ETBEI;
-       __builtin_bfin_ssync();
+       sync();
 
        /* Set LCR to Word Lengh 8-bit word select */
        *pUART_LCR = UART_LCR_WLS8;
-       __builtin_bfin_ssync();
+       sync();
 
        return;
 }
index 5e2ce9bfb9693054cc6cb851adaff7bd9963b968..248e34f3f5b0636b6380075f9e3ec9353d841d41 100644 (file)
 #include "cpu.h"
 #include <asm/arch/anomaly.h>
 #include <asm/cplb.h>
-
-#ifdef DEBUG
-#define pr_debug(fmt,arg...)  printf(fmt,##arg)
-#else
-static inline int
-    __attribute__ ((format(printf, 1, 2))) pr_debug(const char *fmt, ...)
-{
-       return 0;
-}
-#endif
+#include <asm/io.h>
 
 void init_IRQ(void)
 {
@@ -83,13 +74,13 @@ void trap_c(struct pt_regs *regs)
        unsigned short data = 0;
 
        switch (trapnr) {
-               /* 0x26 - Data CPLB Miss */
+       /* 0x26 - Data CPLB Miss */
        case VEC_CPLB_M:
 
 #ifdef ANOMALY_05000261
                /*
-                * Work around an anomaly: if we see a new DCPLB fault, 
-                * return without doing anything. Then, 
+                * Work around an anomaly: if we see a new DCPLB fault,
+                * return without doing anything. Then,
                 * if we get the same fault again, handle it.
                 */
                addr = last_cplb_fault_retx;
@@ -104,9 +95,9 @@ void trap_c(struct pt_regs *regs)
        case VEC_CPLB_I_M:
 
                if (data) {
-                       addr = *pDCPLB_FAULT_ADDR;
+                       addr = *(unsigned int *)pDCPLB_FAULT_ADDR;
                } else {
-                       addr = *pICPLB_FAULT_ADDR;
+                       addr = *(unsigned int *)pICPLB_FAULT_ADDR;
                }
                for (i = 0; i < page_descriptor_table_size; i++) {
                        if (data) {
@@ -117,7 +108,7 @@ void trap_c(struct pt_regs *regs)
                                j = icplb_table[i][0];
                        }
                        if ((j <= addr) && ((j + size) > addr)) {
-                               pr_debug("found %i 0x%08x\n", i, j);
+                               debug("found %i 0x%08x\n", i, j);
                                break;
                        }
                }
@@ -128,16 +119,16 @@ void trap_c(struct pt_regs *regs)
 
                /* Turn the cache off */
                if (data) {
-                       __builtin_bfin_ssync();
+                       sync();
                        asm(" .align 8; ");
                        *(unsigned int *)DMEM_CONTROL &=
                            ~(ACACHE_BCACHE | ENDCPLB | PORT_PREF0);
-                       __builtin_bfin_ssync();
+                       sync();
                } else {
-                       __builtin_bfin_ssync();
+                       sync();
                        asm(" .align 8; ");
                        *(unsigned int *)IMEM_CONTROL &= ~(IMC | ENICPLB);
-                       __builtin_bfin_ssync();
+                       sync();
                }
 
                if (data) {
@@ -150,16 +141,16 @@ void trap_c(struct pt_regs *regs)
 
                j = 0;
                while (*I1 & CPLB_LOCK) {
-                       pr_debug("skipping %i %08p - %08x\n", j, I1, *I1);
+                       debug("skipping %i %08p - %08x\n", j, I1, *I1);
                        *I0++;
                        *I1++;
                        j++;
                }
 
-               pr_debug("remove %i 0x%08x  0x%08x\n", j, *I0, *I1);
+               debug("remove %i 0x%08x  0x%08x\n", j, *I0, *I1);
 
                for (; j < 15; j++) {
-                       pr_debug("replace %i 0x%08x  0x%08x\n", j, I0, I0 + 1);
+                       debug("replace %i 0x%08x  0x%08x\n", j, I0, I0 + 1);
                        *I0++ = *(I0 + 1);
                        *I1++ = *(I1 + 1);
                }
@@ -177,22 +168,22 @@ void trap_c(struct pt_regs *regs)
                }
 
                for (j = 0; j < 16; j++) {
-                       pr_debug("%i 0x%08x  0x%08x\n", j, *I0++, *I1++);
+                       debug("%i 0x%08x  0x%08x\n", j, *I0++, *I1++);
                }
 
                /* Turn the cache back on */
                if (data) {
                        j = *(unsigned int *)DMEM_CONTROL;
-                       __builtin_bfin_ssync();
+                       sync();
                        asm(" .align 8; ");
                        *(unsigned int *)DMEM_CONTROL =
                            ACACHE_BCACHE | ENDCPLB | PORT_PREF0 | j;
-                       __builtin_bfin_ssync();
+                       sync();
                } else {
-                       __builtin_bfin_ssync();
+                       sync();
                        asm(" .align 8; ");
                        *(unsigned int *)IMEM_CONTROL = IMC | ENICPLB;
-                       __builtin_bfin_ssync();
+                       sync();
                }
 
                break;
@@ -209,42 +200,41 @@ void trap_c(struct pt_regs *regs)
                do_reset(NULL, 0, 0, NULL);
        }
 
-      trap_c_return:
        return;
 
 }
 
 void dump(struct pt_regs *fp)
 {
-       pr_debug("RETE:  %08lx  RETN: %08lx  RETX: %08lx  RETS: %08lx\n",
+       debug("RETE:  %08lx  RETN: %08lx  RETX: %08lx  RETS: %08lx\n",
                 fp->rete, fp->retn, fp->retx, fp->rets);
-       pr_debug("IPEND: %04lx  SYSCFG: %04lx\n", fp->ipend, fp->syscfg);
-       pr_debug("SEQSTAT: %08lx    SP: %08lx\n", (long)fp->seqstat, (long)fp);
-       pr_debug("R0: %08lx    R1: %08lx    R2: %08lx    R3: %08lx\n",
+       debug("IPEND: %04lx  SYSCFG: %04lx\n", fp->ipend, fp->syscfg);
+       debug("SEQSTAT: %08lx    SP: %08lx\n", (long)fp->seqstat, (long)fp);
+       debug("R0: %08lx    R1: %08lx    R2: %08lx    R3: %08lx\n",
                 fp->r0, fp->r1, fp->r2, fp->r3);
-       pr_debug("R4: %08lx    R5: %08lx    R6: %08lx    R7: %08lx\n",
+       debug("R4: %08lx    R5: %08lx    R6: %08lx    R7: %08lx\n",
                 fp->r4, fp->r5, fp->r6, fp->r7);
-       pr_debug("P0: %08lx    P1: %08lx    P2: %08lx    P3: %08lx\n",
+       debug("P0: %08lx    P1: %08lx    P2: %08lx    P3: %08lx\n",
                 fp->p0, fp->p1, fp->p2, fp->p3);
-       pr_debug("P4: %08lx    P5: %08lx    FP: %08lx\n",
+       debug("P4: %08lx    P5: %08lx    FP: %08lx\n",
                 fp->p4, fp->p5, fp->fp);
-       pr_debug("A0.w: %08lx    A0.x: %08lx    A1.w: %08lx    A1.x: %08lx\n",
+       debug("A0.w: %08lx    A0.x: %08lx    A1.w: %08lx    A1.x: %08lx\n",
                 fp->a0w, fp->a0x, fp->a1w, fp->a1x);
 
-       pr_debug("LB0: %08lx  LT0: %08lx  LC0: %08lx\n",
+       debug("LB0: %08lx  LT0: %08lx  LC0: %08lx\n",
                 fp->lb0, fp->lt0, fp->lc0);
-       pr_debug("LB1: %08lx  LT1: %08lx  LC1: %08lx\n",
+       debug("LB1: %08lx  LT1: %08lx  LC1: %08lx\n",
                 fp->lb1, fp->lt1, fp->lc1);
-       pr_debug("B0: %08lx  L0: %08lx  M0: %08lx  I0: %08lx\n",
+       debug("B0: %08lx  L0: %08lx  M0: %08lx  I0: %08lx\n",
                 fp->b0, fp->l0, fp->m0, fp->i0);
-       pr_debug("B1: %08lx  L1: %08lx  M1: %08lx  I1: %08lx\n",
+       debug("B1: %08lx  L1: %08lx  M1: %08lx  I1: %08lx\n",
                 fp->b1, fp->l1, fp->m1, fp->i1);
-       pr_debug("B2: %08lx  L2: %08lx  M2: %08lx  I2: %08lx\n",
+       debug("B2: %08lx  L2: %08lx  M2: %08lx  I2: %08lx\n",
                 fp->b2, fp->l2, fp->m2, fp->i2);
-       pr_debug("B3: %08lx  L3: %08lx  M3: %08lx  I3: %08lx\n",
+       debug("B3: %08lx  L3: %08lx  M3: %08lx  I3: %08lx\n",
                 fp->b3, fp->l3, fp->m3, fp->i3);
 
-       pr_debug("DCPLB_FAULT_ADDR=%p\n", *pDCPLB_FAULT_ADDR);
-       pr_debug("ICPLB_FAULT_ADDR=%p\n", *pICPLB_FAULT_ADDR);
+       debug("DCPLB_FAULT_ADDR=%p\n", *pDCPLB_FAULT_ADDR);
+       debug("ICPLB_FAULT_ADDR=%p\n", *pICPLB_FAULT_ADDR);
 
 }
index 3e165f2495625f3e9d2b904681b3e2a4eeab91d1..65dfc815548ba1bd124eb54365f87b4f06c4881e 100644 (file)
@@ -90,7 +90,7 @@
 #define CONFIG_SCLK_HZ         CONFIG_CLKIN_HZ
 #endif
 
-#define CONFIG_MEM_SIZ         32      /* 128, 64, 32, 16 */
+#define CONFIG_MEM_SIZE                32      /* 128, 64, 32, 16 */
 #define CONFIG_MEM_ADD_WDTH    9       /* 8, 9, 10, 11    */
 #define CONFIG_MEM_MT48LC16M16A2TG_75  1
 
index 1d0aeb6f7f5a29079662736e0c63abf005d5c1c6..85b115076afd863f0794c80aa870d72a649da639 100644 (file)
@@ -30,6 +30,7 @@
 #include <asm/page.h>
 #include <config.h>
 #include <asm/blackfin.h>
+#include <asm/io.h>
 
 extern void blackfin_icache_flush_range(const void *, const void *);
 extern void blackfin_dcache_flush_range(const void *, const void *);
@@ -175,7 +176,7 @@ void *dma_memcpy(void *dest, const void *src, size_t count)
 
        /* Enable source DMA */
        *pMDMA_S0_CONFIG = (DMAEN);
-       __builtin_bfin_ssync();
+       sync();
 
        *pMDMA_D0_CONFIG = (WNR | DMAEN);
 
index 7c6a1e93c6d5d3105f834eaf2ffb98cfc7e5f60a..1a0a2826c0631d84f89d812aac9fb7510d7326bc 100644 (file)
 int post_flag;
 #endif
 
-#ifdef DEBUG
-#define pr_debug(fmt,arg...)  printf(fmt,##arg)
-#else
-static inline int
-    __attribute__ ((format(printf, 1, 2))) pr_debug(const char *fmt, ...)
-{
-       return 0;
-}
-#endif
-
 #ifndef CFG_NO_FLASH
 extern flash_info_t flash_info[];
 #endif
@@ -293,7 +283,7 @@ void board_init_f(ulong bootflag)
        display_banner();       /* say that we are here */
 
        for (i = 0; i < page_descriptor_table_size; i++) {
-               pr_debug
+               debug
                    ("data (%02i)= 0x%08x : 0x%08x    intr = 0x%08x : 0x%08x\n",
                     i, dcplb_table[i][0], dcplb_table[i][1], icplb_table[i][0],
                     icplb_table[i][1]);