summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/leon2
diff options
context:
space:
mode:
authorDaniel Cederman <cederman@gaisler.com>2014-05-08 15:42:12 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2014-05-27 09:46:13 +0200
commit363b1f7f021c71f3e5d81a045a43f337e8bb6734 (patch)
tree7c8384ab3b00cf4810e760375489f5a04d5a77f5 /c/src/lib/libbsp/sparc/leon2
parentbsp/gdbarmsim: Switch to the standard arm/shared/startup. (diff)
downloadrtems-363b1f7f021c71f3e5d81a045a43f337e8bb6734.tar.bz2
bsps/sparc: Make lines in SPARC BSPs adhere to 80 character limit.
Diffstat (limited to 'c/src/lib/libbsp/sparc/leon2')
-rw-r--r--c/src/lib/libbsp/sparc/leon2/cchip/cchip.c6
-rw-r--r--c/src/lib/libbsp/sparc/leon2/clock/ckinit.c6
-rw-r--r--c/src/lib/libbsp/sparc/leon2/configure.ac13
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/bsp.h4
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/leon.h6
-rw-r--r--c/src/lib/libbsp/sparc/leon2/include/rasta.h18
-rw-r--r--c/src/lib/libbsp/sparc/leon2/pci/pci.c181
-rw-r--r--c/src/lib/libbsp/sparc/leon2/rasta/rasta.c12
8 files changed, 156 insertions, 90 deletions
diff --git a/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c b/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
index 241dcdd943..c1f4d43a0e 100644
--- a/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
+++ b/c/src/lib/libbsp/sparc/leon2/cchip/cchip.c
@@ -166,7 +166,8 @@ int init_pcif(void){
printk("AMBA: PCIBAR[%d]: 0x%x, 0x%x\n\r",1,ambab->bar1,pcib->bar1);
printk("AMBA: PCIBAR[%d]: 0x%x, 0x%x\n\r",2,ambab->bar2,pcib->bar2);
#endif
- ambab->ambabars[0] = 0x40000000; /* 0xe0000000(AMBA) ==> 0x40000000(PCI) ==> 0x40000000(AT697 AMBA) */
+ /* 0xe0000000(AMBA) ==> 0x40000000(PCI) ==> 0x40000000(AT697 AMBA) */
+ ambab->ambabars[0] = 0x40000000;
/* Scan bus for AMBA devices */
abus = &cc1.amba_bus;
@@ -328,7 +329,8 @@ void cchip1_set_isr(void *handler, int irqno, void *arg){
int_handlers[irqno].handler = handler;
int_handlers[irqno].arg = arg;
#ifdef DEBUG
- printk("Registering IRQ %d to 0x%lx(%d,0x%lx)\n\r",irqno,(unsigned int)handler,irqno,(unsigned int)arg);
+ printk("Registering IRQ %d to 0x%lx(%d,0x%lx)\n\r",
+ irqno,(unsigned int)handler,irqno,(unsigned int)arg);
#endif
cc1.pcib->imask |= 1<<irqno; /* Enable the registered IRQ */
}
diff --git a/c/src/lib/libbsp/sparc/leon2/clock/ckinit.c b/c/src/lib/libbsp/sparc/leon2/clock/ckinit.c
index 345ef3758a..70e8e81f83 100644
--- a/c/src/lib/libbsp/sparc/leon2/clock/ckinit.c
+++ b/c/src/lib/libbsp/sparc/leon2/clock/ckinit.c
@@ -46,7 +46,8 @@ extern int CLOCK_SPEED;
#define Clock_driver_support_initialize_hardware() \
do { \
- LEON_REG.Timer_Reload_1 = rtems_configuration_get_microseconds_per_tick() - 1; \
+ LEON_REG.Timer_Reload_1 = \
+ rtems_configuration_get_microseconds_per_tick() - 1; \
\
LEON_REG.Timer_Control_1 = ( \
LEON_REG_TIMER_COUNTER_ENABLE_COUNTING | \
@@ -77,6 +78,7 @@ static uint32_t bsp_clock_nanoseconds_since_last_tick(void)
return usecs * 1000;
}
-#define Clock_driver_nanoseconds_since_last_tick bsp_clock_nanoseconds_since_last_tick
+#define Clock_driver_nanoseconds_since_last_tick \
+ bsp_clock_nanoseconds_since_last_tick
#include "../../../shared/clockdrv_shell.h"
diff --git a/c/src/lib/libbsp/sparc/leon2/configure.ac b/c/src/lib/libbsp/sparc/leon2/configure.ac
index fdfbd87082..6c7e25de91 100644
--- a/c/src/lib/libbsp/sparc/leon2/configure.ac
+++ b/c/src/lib/libbsp/sparc/leon2/configure.ac
@@ -1,7 +1,8 @@
## Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
-AC_INIT([rtems-c-src-lib-libbsp-sparc-leon2],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
+AC_INIT([rtems-c-src-lib-libbsp-sparc-leon2],
+[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
AC_CONFIG_SRCDIR([bsp_specs])
RTEMS_TOP(../../../../../..)
@@ -23,11 +24,11 @@ AM_CONDITIONAL(HAS_SMP,[test "$rtems_cv_HAS_SMP" = "yes"])
RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
[The leon2 console driver can operate in either polled or interrupt mode.
-Under the simulator (especially when FAST_UART is defined), polled seems to operate
-better. It is common for a task to print a line (like the end of test message) and
-then exit. In this case, the program returns control to the simulator command line
-before the program has even queued the output to the uart. Thus sis has no chance
-of getting the data out.])
+Under the simulator (especially when FAST_UART is defined), polled seems
+to operate better. It is common for a task to print a line (like the end
+of test message) and then exit. In this case, the program returns control
+to the simulator command line before the program has even queued the output
+to the uart. Thus sis has no chance of getting the data out.])
RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[])
RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE],
diff --git a/c/src/lib/libbsp/sparc/leon2/include/bsp.h b/c/src/lib/libbsp/sparc/leon2/include/bsp.h
index 85ee883cce..8e40903936 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/bsp.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/bsp.h
@@ -119,8 +119,8 @@ void bsp_spurious_initialize( void );
/* Allocate 8-byte aligned non-freeable pre-malloc() memory. The function
* can be called at any time. The work-area will shrink when called before
- * bsp_work_area_initialize(). malloc() is called to get memory when this function
- * is called after bsp_work_area_initialize().
+ * bsp_work_area_initialize(). malloc() is called to get memory when this
+ * function is called after bsp_work_area_initialize().
*/
void *bsp_early_malloc(int size);
diff --git a/c/src/lib/libbsp/sparc/leon2/include/leon.h b/c/src/lib/libbsp/sparc/leon2/include/leon.h
index d122f29135..b60c1d5162 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/leon.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/leon.h
@@ -224,11 +224,11 @@ typedef struct {
*/
#define LEON_REG_TIMER_CONTROL_EN 0x00000001 /* 1 = enable counting */
- /* 0 = hold scalar and counter */
+ /* 0 = hold scalar and counter */
#define LEON_REG_TIMER_CONTROL_RL 0x00000002 /* 1 = reload at 0 */
- /* 0 = stop at 0 */
+ /* 0 = stop at 0 */
#define LEON_REG_TIMER_CONTROL_LD 0x00000004 /* 1 = load counter */
- /* 0 = no function */
+ /* 0 = no function */
/*
* The following defines the bits in the UART Control Registers.
diff --git a/c/src/lib/libbsp/sparc/leon2/include/rasta.h b/c/src/lib/libbsp/sparc/leon2/include/rasta.h
index 0073ad7bac..8352900f45 100644
--- a/c/src/lib/libbsp/sparc/leon2/include/rasta.h
+++ b/c/src/lib/libbsp/sparc/leon2/include/rasta.h
@@ -88,12 +88,18 @@ struct uart_reg {
void uart_register(unsigned int baseaddr);
-rtems_device_driver uart_initialize(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
-rtems_device_driver uart_open(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
-rtems_device_driver uart_close(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
-rtems_device_driver uart_read(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
-rtems_device_driver uart_write(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
-rtems_device_driver uart_control(rtems_device_major_number major, rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_initialize(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_open(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_close(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_read(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_write(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
+rtems_device_driver uart_control(rtems_device_major_number major,
+ rtems_device_minor_number minor, void *arg);
struct gpio_reg {
diff --git a/c/src/lib/libbsp/sparc/leon2/pci/pci.c b/c/src/lib/libbsp/sparc/leon2/pci/pci.c
index fcc63df567..f34a173a7f 100644
--- a/c/src/lib/libbsp/sparc/leon2/pci/pci.c
+++ b/c/src/lib/libbsp/sparc/leon2/pci/pci.c
@@ -44,14 +44,14 @@
/* allow for overriding these definitions */
#ifndef PCI_CONFIG_ADDR
-#define PCI_CONFIG_ADDR 0xcf8
+#define PCI_CONFIG_ADDR 0xcf8
#endif
#ifndef PCI_CONFIG_DATA
-#define PCI_CONFIG_DATA 0xcfc
+#define PCI_CONFIG_DATA 0xcfc
#endif
/* define a shortcut */
-#define pci BSP_pci_configuration
+#define pci BSP_pci_configuration
/*
* Bit encode for PCI_CONFIG_HEADER_TYPE register
@@ -59,34 +59,62 @@
unsigned char ucMaxPCIBus;
typedef struct {
- volatile unsigned int pciid1; /* 0x80000100 - PCI Device identification register 1 */
- volatile unsigned int pcisc; /* 0x80000104 - PCI Status & Command */
- volatile unsigned int pciid2; /* 0x80000108 - PCI Device identification register 2 */
- volatile unsigned int pcibhlc; /* 0x8000010c - BIST, Header type, Cache line size register */
- volatile unsigned int mbar1; /* 0x80000110 - Memory Base Address Register 1 */
- volatile unsigned int mbar2; /* 0x80000114 - Memory Base Address Register 2 */
- volatile unsigned int iobar3; /* 0x80000118 - IO Base Address Register 3 */
- volatile unsigned int dummy1[4]; /* 0x8000011c - 0x80000128 */
- volatile unsigned int pcisid; /* 0x8000012c - Subsystem identification register */
- volatile unsigned int dummy2; /* 0x80000130 */
- volatile unsigned int pcicp; /* 0x80000134 - PCI capabilities pointer register */
- volatile unsigned int dummy3; /* 0x80000138 */
- volatile unsigned int pcili; /* 0x8000013c - PCI latency interrupt register */
- volatile unsigned int pcirt; /* 0x80000140 - PCI retry, trdy config */
- volatile unsigned int pcicw; /* 0x80000144 - PCI configuration write register */
- volatile unsigned int pcisa; /* 0x80000148 - PCI Initiator Start Address */
- volatile unsigned int pciiw; /* 0x8000014c - PCI Initiator Write Register */
- volatile unsigned int pcidma; /* 0x80000150 - PCI DMA configuration register */
- volatile unsigned int pciis; /* 0x80000154 - PCI Initiator Status Register */
- volatile unsigned int pciic; /* 0x80000158 - PCI Initiator Configuration */
- volatile unsigned int pcitpa; /* 0x8000015c - PCI Target Page Address Register */
- volatile unsigned int pcitsc; /* 0x80000160 - PCI Target Status-Command Register */
- volatile unsigned int pciite; /* 0x80000164 - PCI Interrupt Enable Register */
- volatile unsigned int pciitp; /* 0x80000168 - PCI Interrupt Pending Register */
- volatile unsigned int pciitf; /* 0x8000016c - PCI Interrupt Force Register */
- volatile unsigned int pcid; /* 0x80000170 - PCI Data Register */
- volatile unsigned int pcibe; /* 0x80000174 - PCI Burst End Register */
- volatile unsigned int pcidmaa; /* 0x80000178 - PCI DMA Address Register */
+ /* 0x80000100 - PCI Device identification register 1 */
+ volatile unsigned int pciid1;
+ /* 0x80000104 - PCI Status & Command */
+ volatile unsigned int pcisc;
+ /* 0x80000108 - PCI Device identification register 2 */
+ volatile unsigned int pciid2;
+ /* 0x8000010c - BIST, Header type, Cache line size register */
+ volatile unsigned int pcibhlc;
+ /* 0x80000110 - Memory Base Address Register 1 */
+ volatile unsigned int mbar1;
+ /* 0x80000114 - Memory Base Address Register 2 */
+ volatile unsigned int mbar2;
+ /* 0x80000118 - IO Base Address Register 3 */
+ volatile unsigned int iobar3;
+ /* 0x8000011c - 0x80000128 */
+ volatile unsigned int dummy1[4];
+ /* 0x8000012c - Subsystem identification register */
+ volatile unsigned int pcisid;
+ /* 0x80000130 */
+ volatile unsigned int dummy2;
+ /* 0x80000134 - PCI capabilities pointer register */
+ volatile unsigned int pcicp;
+ /* 0x80000138 */
+ volatile unsigned int dummy3;
+ /* 0x8000013c - PCI latency interrupt register */
+ volatile unsigned int pcili;
+ /* 0x80000140 - PCI retry, trdy config */
+ volatile unsigned int pcirt;
+ /* 0x80000144 - PCI configuration write register */
+ volatile unsigned int pcicw;
+ /* 0x80000148 - PCI Initiator Start Address */
+ volatile unsigned int pcisa;
+ /* 0x8000014c - PCI Initiator Write Register */
+ volatile unsigned int pciiw;
+ /* 0x80000150 - PCI DMA configuration register */
+ volatile unsigned int pcidma;
+ /* 0x80000154 - PCI Initiator Status Register */
+ volatile unsigned int pciis;
+ /* 0x80000158 - PCI Initiator Configuration */
+ volatile unsigned int pciic;
+ /* 0x8000015c - PCI Target Page Address Register */
+ volatile unsigned int pcitpa;
+ /* 0x80000160 - PCI Target Status-Command Register */
+ volatile unsigned int pcitsc;
+ /* 0x80000164 - PCI Interrupt Enable Register */
+ volatile unsigned int pciite;
+ /* 0x80000168 - PCI Interrupt Pending Register */
+ volatile unsigned int pciitp;
+ /* 0x8000016c - PCI Interrupt Force Register */
+ volatile unsigned int pciitf;
+ /* 0x80000170 - PCI Data Register */
+ volatile unsigned int pcid;
+ /* 0x80000174 - PCI Burst End Register */
+ volatile unsigned int pcibe;
+ /* 0x80000178 - PCI DMA Address Register */
+ volatile unsigned int pcidmaa;
} AT697_PCI_Map;
AT697_PCI_Map *pcic = (AT697_PCI_Map *) 0x80000100;
@@ -107,7 +135,8 @@ struct pci_res {
*/
static int
-BSP_pci_read_config_dword(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned int *val) {
+BSP_pci_read_config_dword(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned int *val) {
volatile unsigned int data;
@@ -131,14 +160,17 @@ BSP_pci_read_config_dword(unsigned char bus, unsigned char slot, unsigned char f
else
*val = data;
- DBG("pci_read - bus: %d, dev: %d, fn: %d, off: %d => addr: %x, val: %x\n", bus, slot, function, offset, (1<<(11+slot) ) | ((function & 7)<<8) | (offset&0x3f), *val);
+ DBG("pci_read - bus: %d, dev: %d, fn: %d, off: %d => addr: %x, val: %x\n",
+ bus, slot, function, offset,
+ (1<<(11+slot) ) | ((function & 7)<<8) | (offset&0x3f), *val);
return PCIBIOS_SUCCESSFUL;
}
static int
-BSP_pci_read_config_word(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned short *val) {
+BSP_pci_read_config_word(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned short *val) {
unsigned int v;
if (offset & 1) return PCIBIOS_BAD_REGISTER_NUMBER;
@@ -151,7 +183,8 @@ BSP_pci_read_config_word(unsigned char bus, unsigned char slot, unsigned char fu
static int
-BSP_pci_read_config_byte(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned char *val) {
+BSP_pci_read_config_byte(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned char *val) {
unsigned int v;
pci_read_config_dword(bus, slot, function, offset&~3, &v);
@@ -163,7 +196,8 @@ BSP_pci_read_config_byte(unsigned char bus, unsigned char slot, unsigned char fu
static int
-BSP_pci_write_config_dword(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned int val) {
+BSP_pci_write_config_dword(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned int val) {
if (offset & 3) return PCIBIOS_BAD_REGISTER_NUMBER;
@@ -182,14 +216,17 @@ BSP_pci_write_config_dword(unsigned char bus, unsigned char slot, unsigned char
pcic->pciitp = 0xff; /* clear interrupts */
-/* DBG("pci write - bus: %d, dev: %d, fn: %d, off: %d => addr: %x, val: %x\n", bus, slot, function, offset, (1<<(11+slot) ) | ((function & 7)<<8) | (offset&0x3f), val); */
+/* DBG("pci write - bus: %d, dev: %d, fn: %d, off: %d => addr: %x, val: %x\n",
+ bus, slot, function, offset,
+ (1<<(11+slot) ) | ((function & 7)<<8) | (offset&0x3f), val); */
return PCIBIOS_SUCCESSFUL;
}
static int
-BSP_pci_write_config_word(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned short val) {
+BSP_pci_write_config_word(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned short val) {
unsigned int v;
if (offset & 1) return PCIBIOS_BAD_REGISTER_NUMBER;
@@ -203,7 +240,8 @@ BSP_pci_write_config_word(unsigned char bus, unsigned char slot, unsigned char f
static int
-BSP_pci_write_config_byte(unsigned char bus, unsigned char slot, unsigned char function, unsigned char offset, unsigned char val) {
+BSP_pci_write_config_byte(unsigned char bus, unsigned char slot,
+ unsigned char function, unsigned char offset, unsigned char val) {
unsigned int v;
pci_read_config_dword(bus, slot, function, offset&~3, &v);
@@ -236,7 +274,8 @@ static void init_at697_pci(void) {
/* Reset */
pcic->pciic = 0xffffffff;
- /* Map system RAM at pci address 0x40000000 and system SDRAM to pci address 0x60000000 */
+ /* Map system RAM at pci address 0x40000000
+ and system SDRAM to pci address 0x60000000 */
pcic->mbar1 = 0x40000000;
pcic->mbar2 = 0x60000000;
pcic->pcitpa = 0x40006000;
@@ -247,7 +286,8 @@ static void init_at697_pci(void) {
/* Set latency timer to 64 */
pcic->pcibhlc = 0x00004000;
- /* Set Inititator configuration so that AHB slave accesses generate memory read/write commands */
+ /* Set Inititator configuration so that AHB slave accesses
+ generate memory read/write commands */
pcic->pciic = 0x41;
pcic->pciite = 0xff;
@@ -383,19 +423,23 @@ int dma_from_pci(unsigned int addr, unsigned int paddr, unsigned int len) {
return 0;
}
-void pci_mem_enable(unsigned char bus, unsigned char slot, unsigned char function) {
+void pci_mem_enable(unsigned char bus, unsigned char slot,
+ unsigned char function) {
unsigned int data;
pci_read_config_dword(0, slot, function, PCI_COMMAND, &data);
- pci_write_config_dword(0, slot, function, PCI_COMMAND, data | PCI_COMMAND_MEMORY);
+ pci_write_config_dword(0, slot, function, PCI_COMMAND,
+ data | PCI_COMMAND_MEMORY);
}
-void pci_master_enable(unsigned char bus, unsigned char slot, unsigned char function) {
+void pci_master_enable(unsigned char bus, unsigned char slot,
+ unsigned char function) {
unsigned int data;
pci_read_config_dword(0, slot, function, PCI_COMMAND, &data);
- pci_write_config_dword(0, slot, function, PCI_COMMAND, data | PCI_COMMAND_MASTER);
+ pci_write_config_dword(0, slot, function, PCI_COMMAND,
+ data | PCI_COMMAND_MASTER);
}
@@ -409,18 +453,19 @@ static inline void swap_res(struct pci_res **p1, struct pci_res **p2) {
/* pci_allocate_resources
*
- * This function scans the bus and assigns PCI addresses to all devices. It handles both
- * single function and multi function devices. All allocated devices are enabled and
- * latency timers are set to 40.
+ * This function scans the bus and assigns PCI addresses to all devices. It
+ * handles both single function and multi function devices. All allocated
+ * devices are enabled and latency timers are set to 40.
*
- * NOTE that it only allocates PCI memory space devices. IO spaces are not enabled.
- * Also, it does not handle pci-pci bridges. They are left disabled.
+ * NOTE that it only allocates PCI memory space devices. IO spaces are
+ * not enabled. Also, it does not handle pci-pci bridges. They are left
+ * disabled.
*
- *
-*/
+ */
static void pci_allocate_resources(void) {
- unsigned int slot, numfuncs, func, id, pos, size, tmp, i, swapped, addr, dev, fn;
+ unsigned int slot, numfuncs, func, id, pos, size, tmp;
+ unsigned int i, swapped, addr, dev, fn;
unsigned char header;
struct pci_res **res;
@@ -445,7 +490,7 @@ static void pci_allocate_resources(void) {
pci_read_config_byte(0, slot, 0, PCI_HEADER_TYPE, &header);
- if(header & PCI_HEADER_TYPE_MULTI_FUNCTION) {
+ if(header & PCI_HEADER_TYPE_MULTI_FUNCTION) {
numfuncs = PCI_MAX_FUNCTIONS;
}
else {
@@ -466,11 +511,14 @@ static void pci_allocate_resources(void) {
}
for (pos = 0; pos < 6; pos++) {
- pci_write_config_dword(0, slot, func, PCI_BASE_ADDRESS_0 + (pos<<2), 0xffffffff);
- pci_read_config_dword(0, slot, func, PCI_BASE_ADDRESS_0 + (pos<<2), &size);
+ pci_write_config_dword(0, slot, func,
+ PCI_BASE_ADDRESS_0 + (pos<<2), 0xffffffff);
+ pci_read_config_dword(0, slot, func,
+ PCI_BASE_ADDRESS_0 + (pos<<2), &size);
if (size == 0 || size == 0xffffffff || (size & 0xff) != 0) {
- pci_write_config_dword(0, slot, func, PCI_BASE_ADDRESS_0 + (pos<<2), 0);
+ pci_write_config_dword(0, slot, func,
+ PCI_BASE_ADDRESS_0 + (pos<<2), 0);
continue;
}
@@ -479,7 +527,8 @@ static void pci_allocate_resources(void) {
res[slot*8*6+func*6+pos]->devfn = slot*8 + func;
res[slot*8*6+func*6+pos]->bar = pos;
- DBG("Slot: %d, function: %d, bar%d size: %x\n", slot, func, pos, ~size+1);
+ DBG("Slot: %d, function: %d, bar%d size: %x\n",
+ slot, func, pos, ~size+1);
}
}
}
@@ -516,8 +565,10 @@ static void pci_allocate_resources(void) {
dev = res[i]->devfn >> 3;
fn = res[i]->devfn & 7;
- DBG("Assigning PCI addr %x to device %d, function %d, bar %d\n", addr, dev, fn, res[i]->bar);
- pci_write_config_dword(0, dev, fn, PCI_BASE_ADDRESS_0+res[i]->bar*4, addr);
+ DBG("Assigning PCI addr %x to device %d, function %d, bar %d\n",
+ addr, dev, fn, res[i]->bar);
+ pci_write_config_dword(0, dev, fn,
+ PCI_BASE_ADDRESS_0+res[i]->bar*4, addr);
addr += res[i]->size;
/* Set latency timer to 64 */
@@ -538,7 +589,7 @@ done:
pci_read_config_byte(0, slot, 0, PCI_HEADER_TYPE, &header);
- if(header & PCI_HEADER_TYPE_MULTI_FUNCTION) {
+ if(header & PCI_HEADER_TYPE_MULTI_FUNCTION) {
numfuncs = PCI_MAX_FUNCTIONS;
}
else {
@@ -555,10 +606,12 @@ done:
if (id == PCI_INVALID_VENDORDEVICEID || id == 0) continue;
- printk("\nSlot %d function: %d\nVendor id: 0x%x, device id: 0x%x\n", slot, func, id & 0xffff, id>>16);
+ printk("\nSlot %d function: %d\nVendor id: 0x%x, "
+ "device id: 0x%x\n", slot, func, id & 0xffff, id>>16);
for (pos = 0; pos < 6; pos++) {
- pci_read_config_dword(0, slot, func, PCI_BASE_ADDRESS_0 + pos*4, &tmp);
+ pci_read_config_dword(0, slot, func,
+ PCI_BASE_ADDRESS_0 + pos*4, &tmp);
if (tmp != 0 && tmp != 0xffffffff && (tmp & 0xff) == 0) {
@@ -620,7 +673,7 @@ int init_pci(void)
0,
PCI_HEADER_TYPE,
&ucHeader);
- if(ucHeader&PCI_HEADER_TYPE_MULTI_FUNCTION) {
+ if(ucHeader&PCI_HEADER_TYPE_MULTI_FUNCTION) {
ucNumFuncs=PCI_MAX_FUNCTIONS;
}
else {
diff --git a/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c b/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
index 9d707151b4..b439bcb326 100644
--- a/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
+++ b/c/src/lib/libbsp/sparc/leon2/rasta/rasta.c
@@ -57,8 +57,8 @@ struct gpio_reg *gpio0, *gpio1;
/* static rtems_isr pci_interrupt_handler (rtems_vector_number v) { */
-/* volatile unsigned int *pci_int = (volatile unsigned int *) 0x80000168; */
-/* volatile unsigned int *pci_mem = (volatile unsigned int *) 0xb0400000; */
+/* volatile unsigned int *pci_int = (volatile unsigned int *) 0x80000168;*/
+/* volatile unsigned int *pci_mem = (volatile unsigned int *) 0xb0400000;*/
/* if (*pci_int & 0x20) { */
@@ -243,7 +243,8 @@ int rasta_register(void)
}
/* Search old PCI vendor/device id. */
- if ( (!found) && (BSP_pciFindDevice(0x16E3, 0x0210, 0, &bus, &dev, &fun) == 0) ) {
+ if ( (!found) &&
+ (BSP_pciFindDevice(0x16E3, 0x0210, 0, &bus, &dev, &fun) == 0) ) {
found = 1;
}
@@ -257,7 +258,7 @@ int rasta_register(void)
pci_read_config_dword(bus, dev, fun, 0x14, &bar1);
page0 = (unsigned int *)(bar0 + 0x400000);
- *page0 = 0x80000000; /* Point PAGE0 to start of APB */
+ *page0 = 0x80000000; /* Point PAGE0 to start of APB */
apb_base = (unsigned int *)(bar0+APB2_OFFSET);
@@ -279,7 +280,8 @@ int rasta_register(void)
irq = (struct irqmp_regs *) (bar0+IRQ_OFFSET);
irq->iclear = 0xffff;
irq->ilevel = 0;
- irq->mask[0] = 0xffff & ~(UART0_IRQ|UART1_IRQ|SPW0_IRQ|SPW1_IRQ|SPW2_IRQ|GRCAN_IRQ|BRM_IRQ);
+ irq->mask[0] = 0xffff &
+ ~(UART0_IRQ|UART1_IRQ|SPW0_IRQ|SPW1_IRQ|SPW2_IRQ|GRCAN_IRQ|BRM_IRQ);
/* Configure AT697 ioport bit 7 to input pci irq */
regs->PIO_Direction &= ~(1<<7);