grlib: Add ambapp_plb()

Replace the global variable ambapp_plb with a function to allow an automatic on
demand initialization.
This commit is contained in:
Sebastian Huber
2021-06-10 13:04:13 +02:00
parent c4c8d3fd50
commit 2c07f24af2
19 changed files with 96 additions and 63 deletions

View File

@@ -188,6 +188,11 @@ struct ambapp_context {
void *(*alloc)(size_t); void *(*alloc)(size_t);
}; };
/**
* @brief Gets the fully scanned AMBA Plug & Play Processor Local Bus (PLB).
*/
extern struct ambapp_bus *ambapp_plb(void);
/* Scan a AMBA Plug & Play bus and create all device structures describing the /* Scan a AMBA Plug & Play bus and create all device structures describing the
* the devices. The devices will form a tree, where every node describes one * the devices. The devices will form a tree, where every node describes one
* interface. The resulting tree is placed in the location pointed to by root. * interface. The resulting tree is placed in the location pointed to by root.

View File

@@ -157,8 +157,6 @@ RTEMS_INLINE_ROUTINE unsigned int grlib_read_uncached32(unsigned int address)
#endif #endif
extern struct ambapp_bus ambapp_plb;
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@@ -68,7 +68,7 @@ static int find_matching_apbuart(struct ambapp_dev *dev, int index, void *arg)
/* Get APBUART core frequency, it is assumed that it is the same /* Get APBUART core frequency, it is assumed that it is the same
* as Bus frequency where the UART is situated * as Bus frequency where the UART is situated
*/ */
apbuarts[uarts].freq_hz = ambapp_freq_get(&ambapp_plb, dev); apbuarts[uarts].freq_hz = ambapp_freq_get(ambapp_plb(), dev);
uarts++; uarts++;
if (uarts >= BSP_NUMBER_OF_TERMIOS_PORTS) if (uarts >= BSP_NUMBER_OF_TERMIOS_PORTS)
@@ -83,7 +83,7 @@ static void grlib_console_scan_uarts(void)
memset(apbuarts, 0, sizeof(apbuarts)); memset(apbuarts, 0, sizeof(apbuarts));
/* Find APBUART cores */ /* Find APBUART cores */
ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), VENDOR_GAISLER, ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS), VENDOR_GAISLER,
GAISLER_APBUART, find_matching_apbuart, NULL); GAISLER_APBUART, find_matching_apbuart, NULL);
} }

View File

@@ -64,7 +64,7 @@ static void bsp_debug_uart_init(void)
/* Find APBUART core for System Debug Console */ /* Find APBUART core for System Debug Console */
i = grlib_debug_uart_index; i = grlib_debug_uart_index;
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_APBUART, VENDOR_GAISLER, GAISLER_APBUART,
ambapp_find_by_idx, (void *)&i); ambapp_find_by_idx, (void *)&i);
if (adev) { if (adev) {

View File

@@ -69,9 +69,6 @@
extern "C" { extern "C" {
#endif #endif
/* The AMBA Plug&Play info of the bus that the cpu sits on */
extern struct ambapp_bus ambapp_plb;
extern uint32_t GRLIB_Cpu_Index; extern uint32_t GRLIB_Cpu_Index;
extern const unsigned char GRLIB_mp_irq; extern const unsigned char GRLIB_mp_irq;
@@ -89,7 +86,7 @@ static inline uint32_t grlib_up_counter_frequency(void)
* For simplicity, assume that the interrupt controller uses the processor * For simplicity, assume that the interrupt controller uses the processor
* clock. This is at least true on the GR740. * clock. This is at least true on the GR740.
*/ */
return ambapp_freq_get(&ambapp_plb, GRLIB_IrqCtrl_Adev); return ambapp_freq_get(ambapp_plb(), GRLIB_IrqCtrl_Adev);
} }
extern rtems_interrupt_lock GRLIB_IrqCtrl_Lock; extern rtems_interrupt_lock GRLIB_IrqCtrl_Lock;

View File

@@ -42,7 +42,7 @@ void irqmp_initialize(void)
struct ambapp_dev *adev; struct ambapp_dev *adev;
/* Find GRLIB Interrupt controller */ /* Find GRLIB Interrupt controller */
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_IRQMP, VENDOR_GAISLER, GAISLER_IRQMP,
ambapp_find_by_idx, NULL); ambapp_find_by_idx, NULL);
if (adev != NULL) { if (adev != NULL) {
@@ -89,7 +89,7 @@ void gptimer_initialize(void)
struct ambapp_dev *adev; struct ambapp_dev *adev;
/* find GP Timer */ /* find GP Timer */
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_GPTIMER, VENDOR_GAISLER, GAISLER_GPTIMER,
ambapp_find_by_idx, &grlib_timer_core_index); ambapp_find_by_idx, &grlib_timer_core_index);
if (adev) { if (adev) {
@@ -98,7 +98,7 @@ void gptimer_initialize(void)
/* Register AMBA Bus Frequency */ /* Register AMBA Bus Frequency */
ambapp_freq_init( ambapp_freq_init(
&ambapp_plb, ambapp_plb(),
GRLIB_Timer_Adev, GRLIB_Timer_Adev,
(GRLIB_Timer_Regs->scaler_reload + 1) (GRLIB_Timer_Regs->scaler_reload + 1)
* GRLIB_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER * GRLIB_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER

View File

@@ -53,16 +53,28 @@ void bsp_start(void)
#endif #endif
} }
void amba_initialize(void); static struct ambapp_bus ambapp_plb_instance;
struct ambapp_bus ambapp_plb;
void amba_initialize(void) struct ambapp_bus *ambapp_plb( void )
{ {
ambapp_scan(&ambapp_plb, GRLIB_IO_AREA, NULL, NULL); struct ambapp_bus *plb;
plb = &ambapp_plb_instance;
if ( plb->root == NULL ) {
ambapp_scan( plb, GRLIB_IO_AREA, NULL, NULL );
gptimer_initialize(); gptimer_initialize();
irqmp_initialize(); irqmp_initialize();
} }
return plb;
}
static void amba_initialize( void )
{
(void) ambapp_plb();
}
RTEMS_SYSINIT_ITEM( RTEMS_SYSINIT_ITEM(
amba_initialize, amba_initialize,
RTEMS_SYSINIT_BSP_START, RTEMS_SYSINIT_BSP_START,

View File

@@ -72,7 +72,7 @@ static int ASCS_get_addr(int *base, int *irq) {
struct ambapp_apb_info core; struct ambapp_apb_info core;
if(ambapp_find_apbslv(&ambapp_plb, VENDOR_GAISLER, GAISLER_ASCS, &core) == 1) { if(ambapp_find_apbslv(ambapp_plb(), VENDOR_GAISLER, GAISLER_ASCS, &core) == 1) {
*base = core.start; *base = core.start;
*irq = core.common.irq; *irq = core.common.irq;
DBG("ASCS_get_addr: Registerd ASCS core at 0x%x with irq %i\n",core.start, core.irq); DBG("ASCS_get_addr: Registerd ASCS core at 0x%x with irq %i\n",core.start, core.irq);
@@ -108,7 +108,7 @@ static int ASCS_get_sysfreq(void) {
struct gptimer_regs *tregs; struct gptimer_regs *tregs;
int tmp; int tmp;
if(ambapp_find_apbslv(&ambapp_plb, VENDOR_GAISLER, GAISLER_GPTIMER, &gpt) == 1) { if(ambapp_find_apbslv(ambapp_plb(), VENDOR_GAISLER, GAISLER_GPTIMER, &gpt) == 1) {
tregs = (struct gptimer_regs *) gpt.start; tregs = (struct gptimer_regs *) gpt.start;
tmp = (tregs->scaler_reload + 1)*1000; tmp = (tregs->scaler_reload + 1)*1000;
DBG("ASCS_get_sysfreq: Detected system frequency %i kHz\n",tmp); DBG("ASCS_get_sysfreq: Detected system frequency %i kHz\n",tmp);

View File

@@ -132,7 +132,7 @@ static rtems_device_driver canmux_initialize(rtems_device_major_number major, rt
strcpy(fs_name, CANMUX_DEVNAME); strcpy(fs_name, CANMUX_DEVNAME);
/* Find core and initialize register pointer */ /* Find core and initialize register pointer */
if (!ambapp_find_apbslv(&ambapp_plb, VENDOR_GAISLER, GAISLER_CANMUX, &d)) { if (!ambapp_find_apbslv(ambapp_plb(), VENDOR_GAISLER, GAISLER_CANMUX, &d)) {
printk("CAN_MUX: Failed to find CAN_MUX core\n\r"); printk("CAN_MUX: Failed to find CAN_MUX core\n\r");
return -1; return -1;
} }

View File

@@ -585,7 +585,7 @@ static rtems_device_driver satcan_initialize(rtems_device_major_number major, rt
strcpy(fs_name, SATCAN_DEVNAME); strcpy(fs_name, SATCAN_DEVNAME);
/* Find core and initialize register pointer */ /* Find core and initialize register pointer */
if (!ambapp_find_ahbslv(&ambapp_plb, VENDOR_GAISLER, GAISLER_SATCAN, &d)) { if (!ambapp_find_ahbslv(ambapp_plb(), VENDOR_GAISLER, GAISLER_SATCAN, &d)) {
printk("SatCAN: Failed to find SatCAN core\n\r"); printk("SatCAN: Failed to find SatCAN core\n\r");
return -1; return -1;
} }

View File

@@ -181,7 +181,7 @@ static int SLINK_getaddr(int *base, int *irq)
{ {
struct ambapp_apb_info c; struct ambapp_apb_info c;
if (ambapp_find_apbslv(&ambapp_plb,VENDOR_GAISLER,GAISLER_SLINK,&c) == 1) { if (ambapp_find_apbslv(ambapp_plb(),VENDOR_GAISLER,GAISLER_SLINK,&c) == 1) {
*base = c.start; *base = c.start;
*irq = c.common.irq; *irq = c.common.irq;
return 0; return 0;
@@ -215,7 +215,7 @@ static int SLINK_getsysfreq(void)
struct ambapp_apb_info t; struct ambapp_apb_info t;
struct gptimer_regs *tregs; struct gptimer_regs *tregs;
if (ambapp_find_apbslv(&ambapp_plb,VENDOR_GAISLER,GAISLER_GPTIMER,&t)==1) { if (ambapp_find_apbslv(ambapp_plb(),VENDOR_GAISLER,GAISLER_GPTIMER,&t)==1) {
tregs = (struct gptimer_regs *)t.start; tregs = (struct gptimer_regs *)t.start;
DBG("SLINK_getsysfreq returning %d\n", DBG("SLINK_getsysfreq returning %d\n",
(tregs->scaler_reload+1)*1000*1000); (tregs->scaler_reload+1)*1000*1000);

View File

@@ -185,7 +185,7 @@ static void leon3_clock_initialize(void)
} else if (irqmp_has_timestamp(irqmp_ts)) { } else if (irqmp_has_timestamp(irqmp_ts)) {
/* Use the interrupt controller timestamp counter if available */ /* Use the interrupt controller timestamp counter if available */
tc->tc_get_timecount = _SPARC_Get_timecount_up; tc->tc_get_timecount = _SPARC_Get_timecount_up;
tc->tc_frequency = ambapp_freq_get(&ambapp_plb, LEON3_Timer_Adev); tc->tc_frequency = ambapp_freq_get(ambapp_plb(), LEON3_Timer_Adev);
leon3_tc_tick = leon3_tc_tick_irqmp_timestamp_init; leon3_tc_tick = leon3_tc_tick_irqmp_timestamp_init;

View File

@@ -66,7 +66,7 @@ static int find_matching_apbuart(struct ambapp_dev *dev, int index, void *arg)
/* Get APBUART core frequency, it is assumed that it is the same /* Get APBUART core frequency, it is assumed that it is the same
* as Bus frequency where the UART is situated * as Bus frequency where the UART is situated
*/ */
apbuarts[uarts].freq_hz = ambapp_freq_get(&ambapp_plb, dev); apbuarts[uarts].freq_hz = ambapp_freq_get(ambapp_plb(), dev);
uarts++; uarts++;
if (uarts >= BSP_NUMBER_OF_TERMIOS_PORTS) if (uarts >= BSP_NUMBER_OF_TERMIOS_PORTS)
@@ -81,7 +81,7 @@ static void leon3_console_scan_uarts(void)
memset(apbuarts, 0, sizeof(apbuarts)); memset(apbuarts, 0, sizeof(apbuarts));
/* Find APBUART cores */ /* Find APBUART cores */
ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), VENDOR_GAISLER, ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS), VENDOR_GAISLER,
GAISLER_APBUART, find_matching_apbuart, NULL); GAISLER_APBUART, find_matching_apbuart, NULL);
} }

View File

@@ -85,7 +85,7 @@ static void bsp_debug_uart_init(void)
/* Find APBUART core for System Debug Console */ /* Find APBUART core for System Debug Console */
i = leon3_debug_uart_index; i = leon3_debug_uart_index;
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(ambapp_plb(), (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_APBUART, VENDOR_GAISLER, GAISLER_APBUART,
ambapp_find_by_idx, (void *)&i); ambapp_find_by_idx, (void *)&i);
if (adev != NULL) { if (adev != NULL) {

View File

@@ -45,17 +45,6 @@
#include <grlib/ambapp.h> #include <grlib/ambapp.h>
#include <grlib/grlib.h> #include <grlib/grlib.h>
#ifdef __cplusplus
extern "C" {
#endif
/* The AMBA Plug&Play info of the bus that the LEON3 sits on */
extern struct ambapp_bus ambapp_plb;
#ifdef __cplusplus
}
#endif
/** @} */ /** @} */
#endif /* __AMBA_H__ */ #endif /* __AMBA_H__ */

View File

@@ -494,7 +494,7 @@ static inline uint32_t leon3_up_counter_frequency(void)
* For simplicity, assume that the interrupt controller uses the processor * For simplicity, assume that the interrupt controller uses the processor
* clock. This is at least true on the GR740. * clock. This is at least true on the GR740.
*/ */
return ambapp_freq_get(&ambapp_plb, LEON3_IrqCtrl_Adev); return ambapp_freq_get(ambapp_plb(), LEON3_IrqCtrl_Adev);
} }
#endif /* !ASM */ #endif /* !ASM */

View File

@@ -15,8 +15,11 @@
#include <bsp/fatal.h> #include <bsp/fatal.h>
#include <leon.h> #include <leon.h>
#include <grlib/ambapp.h> #include <grlib/ambapp.h>
#include <rtems/score/memory.h>
#include <rtems/sysinit.h> #include <rtems/sysinit.h>
#include <string.h>
unsigned int leon3_timer_prescaler __attribute__((weak)) = 0; unsigned int leon3_timer_prescaler __attribute__((weak)) = 0;
int leon3_timer_core_index __attribute__((weak)) = 0; int leon3_timer_core_index __attribute__((weak)) = 0;
@@ -25,7 +28,35 @@ int leon3_timer_core_index __attribute__((weak)) = 0;
* After software has scanned AMBA PnP it builds a tree to make * After software has scanned AMBA PnP it builds a tree to make
* it easier for drivers to work with the bus architecture. * it easier for drivers to work with the bus architecture.
*/ */
struct ambapp_bus ambapp_plb; static struct ambapp_bus ambapp_plb_instance;
static void *ambapp_plb_alloc( size_t size )
{
return _Memory_Allocate( _Memory_Get(), size, CPU_HEAP_ALIGNMENT );
}
struct ambapp_bus *ambapp_plb( void )
{
struct ambapp_bus *plb;
plb = &ambapp_plb_instance;
if ( plb->root == NULL ) {
struct ambapp_context ctx;
ctx.copy_from_device = (ambapp_memcpy_t) memcpy;
ctx.alloc = ambapp_plb_alloc;
/* Scan AMBA Plug&Play read-only information. The routine builds a PnP
* tree into ambapp_plb in RAM, after this we never access the PnP
* information in hardware directly any more.
* Since on Processor Local Bus (PLB) memory mapping is 1:1
*/
ambapp_scan( plb, LEON3_IO_AREA, &ctx, NULL );
}
return plb;
}
/* If RTEMS_DRVMGR_STARTUP is defined extra code is added that /* If RTEMS_DRVMGR_STARTUP is defined extra code is added that
* registers the GRLIB AMBA PnP bus driver as root driver. * registers the GRLIB AMBA PnP bus driver as root driver.
@@ -48,10 +79,20 @@ struct drvmgr_bus_res grlib_drv_resources __attribute__((weak)) =
}; };
/* GRLIB AMBA bus configuration (the LEON3 root bus configuration) */ /* GRLIB AMBA bus configuration (the LEON3 root bus configuration) */
struct grlib_config grlib_bus_config = struct grlib_config grlib_bus_config;
static void ambapp_grlib_root_initialize( void )
{ {
&ambapp_plb, /* AMBAPP bus setup */ /* Register Root bus, Use GRLIB AMBA PnP bus as root bus for LEON3 */
&grlib_drv_resources, /* Driver configuration */ grlib_bus_config.abus = ambapp_plb();
grlib_bus_config.resources = &grlib_drv_resources;
ambapp_grlib_root_register(&grlib_bus_config);
}
RTEMS_SYSINIT_ITEM(
ambapp_grlib_root_initialize,
RTEMS_SYSINIT_BSP_START,
RTEMS_SYSINIT_ORDER_SECOND
}; };
#endif #endif
@@ -78,16 +119,12 @@ static void amba_initialize(void)
{ {
int icsel; int icsel;
struct ambapp_dev *adev; struct ambapp_dev *adev;
struct ambapp_bus *plb;
/* Scan AMBA Plug&Play read-only information. The routine builds a PnP plb = ambapp_plb();
* tree into ambapp_plb in RAM, after this we never access the PnP
* information in hardware directly any more.
* Since on Processor Local Bus (PLB) memory mapping is 1:1
*/
ambapp_scan(&ambapp_plb, LEON3_IO_AREA, NULL, NULL);
/* Find LEON3 Interrupt controller */ /* Find LEON3 Interrupt controller */
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(plb, (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_IRQMP, VENDOR_GAISLER, GAISLER_IRQMP,
ambapp_find_by_idx, NULL); ambapp_find_by_idx, NULL);
if (adev == NULL) { if (adev == NULL) {
@@ -118,7 +155,7 @@ static void amba_initialize(void)
leon3_ext_irq_init(); leon3_ext_irq_init();
/* find GP Timer */ /* find GP Timer */
adev = (void *)ambapp_for_each(&ambapp_plb, (OPTIONS_ALL|OPTIONS_APB_SLVS), adev = (void *)ambapp_for_each(plb, (OPTIONS_ALL|OPTIONS_APB_SLVS),
VENDOR_GAISLER, GAISLER_GPTIMER, VENDOR_GAISLER, GAISLER_GPTIMER,
ambapp_find_by_idx, &leon3_timer_core_index); ambapp_find_by_idx, &leon3_timer_core_index);
if (adev) { if (adev) {
@@ -127,7 +164,7 @@ static void amba_initialize(void)
/* Register AMBA Bus Frequency */ /* Register AMBA Bus Frequency */
ambapp_freq_init( ambapp_freq_init(
&ambapp_plb, plb,
LEON3_Timer_Adev, LEON3_Timer_Adev,
(LEON3_Timer_Regs->scaler_reload + 1) (LEON3_Timer_Regs->scaler_reload + 1)
* LEON3_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER * LEON3_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER
@@ -140,15 +177,10 @@ static void amba_initialize(void)
if (leon3_timer_prescaler) if (leon3_timer_prescaler)
LEON3_Timer_Regs->scaler_reload = leon3_timer_prescaler; LEON3_Timer_Regs->scaler_reload = leon3_timer_prescaler;
} }
#ifdef RTEMS_DRVMGR_STARTUP
/* Register Root bus, Use GRLIB AMBA PnP bus as root bus for LEON3 */
ambapp_grlib_root_register(&grlib_bus_config);
#endif
} }
RTEMS_SYSINIT_ITEM( RTEMS_SYSINIT_ITEM(
amba_initialize, amba_initialize,
RTEMS_SYSINIT_BSP_START, RTEMS_SYSINIT_BSP_EARLY,
RTEMS_SYSINIT_ORDER_SECOND RTEMS_SYSINIT_ORDER_MIDDLE
); );

View File

@@ -31,7 +31,7 @@ static inline volatile struct l2c_regs *get_l2c_regs(void)
struct ambapp_dev *adev; struct ambapp_dev *adev;
adev = (void *) ambapp_for_each( adev = (void *) ambapp_for_each(
&ambapp_plb, ambapp_plb(),
OPTIONS_ALL | OPTIONS_AHB_SLVS, OPTIONS_ALL | OPTIONS_AHB_SLVS,
VENDOR_GAISLER, VENDOR_GAISLER,
GAISLER_L2CACHE, GAISLER_L2CACHE,

View File

@@ -52,7 +52,7 @@ static void leon3_counter_initialize(void)
/* Enable interrupt timestamping for an arbitrary interrupt line */ /* Enable interrupt timestamping for an arbitrary interrupt line */
irqmp_ts->control = 0x1; irqmp_ts->control = 0x1;
leon3_counter_frequency = ambapp_freq_get(&ambapp_plb, LEON3_IrqCtrl_Adev); leon3_counter_frequency = ambapp_freq_get(ambapp_plb(), LEON3_IrqCtrl_Adev);
} else if (gpt != NULL) { } else if (gpt != NULL) {
/* Fall back to the first GPTIMER if available */ /* Fall back to the first GPTIMER if available */
counter->read_isr_disabled = _SPARC_Counter_read_down; counter->read_isr_disabled = _SPARC_Counter_read_down;
@@ -65,7 +65,7 @@ static void leon3_counter_initialize(void)
GPTIMER_TIMER_CTRL_RS | GPTIMER_TIMER_CTRL_RS |
GPTIMER_TIMER_CTRL_LD; GPTIMER_TIMER_CTRL_LD;
leon3_counter_frequency = ambapp_freq_get(&ambapp_plb, LEON3_Timer_Adev) / leon3_counter_frequency = ambapp_freq_get(ambapp_plb(), LEON3_Timer_Adev) /
(gpt->scaler_reload + 1); (gpt->scaler_reload + 1);
} }
} }