forked from Imagelibrary/rtems
* Makefile.am: Add the following new drivers: PCI, b1553BRM, SpaceWire(GRSPW), CAN (GRCAN,OC_CAN), Raw UART. * shared/include/apbuart.h, shared/include/apbuart_pci.h, shared/include/apbuart_rasta.h, shared/include/b1553brm.h, shared/include/b1553brm_pci.h, shared/include/b1553brm_rasta.h, shared/include/debug_defs.h, shared/include/grcan.h, shared/include/grcan_rasta.h, shared/include/grcan_spwrtc.h, shared/include/grspw.h, shared/include/grspw_pci.h, shared/include/grspw_rasta.h, shared/include/occan.h, shared/include/occan_pci.h, shared/include/pci.h: New files.
25 lines
430 B
C
25 lines
430 B
C
|
|
#ifndef __GRCAN_RASTA_H__
|
|
#define __GRCAN_RASTA_H__
|
|
|
|
#include <grcan.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Registers the GRCAN for RASTA
|
|
*
|
|
* rambase is address of the first GRCAN core has it's TX buffer, followed by
|
|
* it's RX buffer
|
|
*/
|
|
int grcan_rasta_ram_register(amba_confarea_type *abus, int rambase);
|
|
|
|
extern void (*grcan_rasta_int_reg)(void *handler, int irq, void *arg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|