source: rtems/c/src/lib/libbsp/sparc/Makefile.am @ 3bb4122

4.115
Last change on this file since 3bb4122 was 3bb4122, checked in by Daniel Hellstrom <daniel@…>, on 02/23/15 at 12:02:39

LEON: added new drivers to the LEON2/LEON3 BSPs

Most drivers use the Driver Manager for device probing, they
work on AMBA-over-PCI systems if PCI is big-endian.

New APIs:

  • GPIO Library, interfaced to GRGPIO
  • GENIRQ, Generic interrupt service implementation helper

New GRLIB Drivers:

  • ACTEL 1553 RT, user interface is similar to 1553 BRM driver
  • GR1553 (1553 BC, RT and BM core)
  • AHBSTAT (AHB error status core)
  • GRADCDAC (Core interfacing to ADC/DAC hardware)
  • GRGPIO (GPIO port accessed from GPIO Library)
  • MCTRL (Memory controller settings configuration)
  • GRETH (10/100/1000 Ethernet driver using Driver manager)
  • GRPWM (Pulse Width Modulation core)
  • SPICTRL (SPI master interface)
  • GRSPW_ROUTER (SpaceWire? Router AMBA configuration interface)
  • GRCTM (SpaceCraft? on-board Time Management core)
  • SPWCUC (Time distribution over SpaceWire?)
  • GRTC (SpaceCraft? up-link Tele core)
  • GRTM (SpaceCraft? down-link Tele Metry core)

GR712RC ASIC specific interfaces:

  • GRASCS
  • CANMUX (select between OCCAN and SATCAN)
  • SATCAN
  • SLINK
  • Property mode set to 100644
File size: 4.7 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3# Descend into the @RTEMS_BSP_FAMILY@ directory
4SUBDIRS = @RTEMS_BSP_FAMILY@
5
6EXTRA_DIST =
7
8EXTRA_DIST += shared/gnatcommon.c
9EXTRA_DIST += shared/include/gnatcommon.h
10EXTRA_DIST += shared/start/start.S
11
12# Interrupt
13EXTRA_DIST += shared/irq/irq-shared.c
14EXTRA_DIST += shared/irq/bsp_isr_handler.c
15EXTRA_DIST += shared/irq/genirq.c
16EXTRA_DIST += shared/include/genirq.h
17
18# AMBA Plug&Play bus
19EXTRA_DIST += shared/include/ahbstat.h
20EXTRA_DIST += shared/include/ambapp.h
21EXTRA_DIST += shared/include/ambapp_ids.h
22EXTRA_DIST += shared/include/grlib.h
23EXTRA_DIST += shared/amba/ahbstat.c
24EXTRA_DIST += shared/amba/ambapp.c
25EXTRA_DIST += shared/amba/ambapp_alloc.c
26EXTRA_DIST += shared/amba/ambapp_count.c
27EXTRA_DIST += shared/amba/ambapp_depth.c
28EXTRA_DIST += shared/amba/ambapp_find_by_idx.c
29EXTRA_DIST += shared/amba/ambapp_freq.c
30EXTRA_DIST += shared/amba/ambapp_parent.c
31EXTRA_DIST += shared/amba/ambapp_names.c
32EXTRA_DIST += shared/amba/ambapp_old.c
33EXTRA_DIST += shared/amba/ambapp_show.c
34
35# Clock Driver and Timer Library
36EXTRA_DIST += shared/include/tlib.h
37EXTRA_DIST += shared/timer/gptimer.c
38EXTRA_DIST += shared/timer/tlib.c
39EXTRA_DIST += shared/timer/tlib_ckinit.c
40
41# PCI bus
42EXTRA_DIST += shared/include/grpci2.h
43EXTRA_DIST += shared/pci/grpci.c
44EXTRA_DIST += shared/pci/grpci2.c
45EXTRA_DIST += shared/pci/pcif.c
46EXTRA_DIST += shared/pci/pci_memreg_sparc_le.c
47EXTRA_DIST += shared/pci/pci_memreg_sparc_be.c
48
49# PCI target boards
50EXTRA_DIST += shared/include/gr_701.h
51EXTRA_DIST += shared/include/gr_rasta_adcdac.h
52EXTRA_DIST += shared/include/gr_rasta_io.h
53EXTRA_DIST += shared/include/gr_rasta_tmtc.h
54EXTRA_DIST += shared/include/gr_tmtc_1553.h
55EXTRA_DIST += shared/pci/gr_701.c
56EXTRA_DIST += shared/pci/gr_rasta_adcdac.c
57EXTRA_DIST += shared/pci/gr_rasta_io.c
58EXTRA_DIST += shared/pci/gr_rasta_spw_router.c
59EXTRA_DIST += shared/pci/gr_rasta_tmtc.c
60EXTRA_DIST += shared/pci/gr_tmtc_1553.c
61
62# DEBUG
63EXTRA_DIST += shared/include/debug_defs.h
64
65# SpaceWire
66EXTRA_DIST += shared/spw/grspw.c
67EXTRA_DIST += shared/spw/grspw_router.c
68EXTRA_DIST += shared/include/grspw.h
69EXTRA_DIST += shared/include/grspw_router.h
70
71# UART
72EXTRA_DIST += shared/uart/cons.c
73EXTRA_DIST += shared/uart/apbuart_cons.c
74EXTRA_DIST += shared/include/cons.h
75EXTRA_DIST += shared/uart/apbuart.c
76EXTRA_DIST += shared/include/apbuart.h
77
78# CAN (OC_CAN, GRCAN)
79EXTRA_DIST += shared/can/occan.c
80EXTRA_DIST += shared/can/grcan.c
81EXTRA_DIST += shared/include/occan.h
82EXTRA_DIST += shared/include/grcan.h
83
84# MEM
85EXTRA_DIST += shared/mem/mctrl.c
86
87# MIL-STD-B1553 (Core1553BRM)
88EXTRA_DIST += shared/1553/b1553brm.c
89EXTRA_DIST += shared/1553/b1553rt.c
90EXTRA_DIST += shared/include/b1553brm.h
91EXTRA_DIST += shared/include/b1553rt.h
92
93# MIL-STD-B1553 (GR1553B)
94EXTRA_DIST += shared/1553/gr1553b.c
95EXTRA_DIST += shared/1553/gr1553bc.c
96EXTRA_DIST += shared/1553/gr1553bm.c
97EXTRA_DIST += shared/1553/gr1553rt.c
98EXTRA_DIST += shared/include/gr1553b.h
99EXTRA_DIST += shared/include/gr1553bc.h
100EXTRA_DIST += shared/include/gr1553bc_list.h
101EXTRA_DIST += shared/include/gr1553bm.h
102EXTRA_DIST += shared/include/gr1553rt.h
103
104# I2C-master (I2CMST)
105EXTRA_DIST += shared/i2c/i2cmst.c
106EXTRA_DIST += shared/include/i2cmst.h
107
108# SPI
109EXTRA_DIST += shared/spi/spictrl.c
110EXTRA_DIST += shared/include/spictrl.h
111
112# TIME
113EXTRA_DIST += shared/time/spwcuc.c
114EXTRA_DIST += shared/time/grctm.c
115EXTRA_DIST += shared/include/spwcuc.h
116EXTRA_DIST += shared/include/grctm.h
117
118# GPIO
119EXTRA_DIST += shared/gpio/grgpio.c
120EXTRA_DIST += shared/gpio/gpiolib.c
121EXTRA_DIST += shared/include/grgpio.h
122EXTRA_DIST += shared/include/gpiolib.h
123
124# PWM
125EXTRA_DIST += shared/pwm/grpwm.c
126EXTRA_DIST += shared/include/grpwm.h
127
128# ADC and DAC
129EXTRA_DIST += shared/analog/gradcdac.c
130EXTRA_DIST += shared/include/gradcdac.h
131
132# GRETH
133EXTRA_DIST += shared/net/greth.c
134EXTRA_DIST += shared/include/greth.h
135
136# Network configuration
137EXTRA_DIST += shared/net/network_interface_add.c
138EXTRA_DIST += shared/include/network_interface_add.h
139
140# Driver Manager
141EXTRA_DIST += shared/drvmgr/ambapp_bus.c
142EXTRA_DIST += shared/drvmgr/ambapp_bus_grlib.c
143EXTRA_DIST += shared/drvmgr/ambapp_bus_leon2.c
144EXTRA_DIST += shared/drvmgr/leon2_amba_bus.c
145
146EXTRA_DIST += shared/include/drvmgr/ambapp_bus_grlib.h
147EXTRA_DIST += shared/include/drvmgr/ambapp_bus.h
148EXTRA_DIST += shared/include/drvmgr/leon2_amba_bus.h
149# GR712
150EXTRA_DIST += shared/ascs/grascs.c
151EXTRA_DIST += shared/include/grascs.h
152EXTRA_DIST += shared/can/satcan.c
153EXTRA_DIST += shared/include/satcan.h
154EXTRA_DIST += shared/slink/grslink.c
155EXTRA_DIST += shared/include/grslink.h
156
157# TMTC
158EXTRA_DIST += shared/tmtc/grtc.c
159EXTRA_DIST += shared/include/grtc.h
160EXTRA_DIST += shared/tmtc/grtm.c
161EXTRA_DIST += shared/include/grtm.h
162
163include $(top_srcdir)/../../../automake/subdirs.am
164include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.