- Timestamp:
- Mar 16, 2016, 12:36:41 AM (5 years ago)
- Branches:
- 5, master
- Children:
- 05ef287
- Parents:
- 78c9fe8
- git-author:
- Joel Sherrill <joel@…> (03/16/16 00:36:41)
- git-committer:
- Joel Sherrill <joel@…> (03/16/16 00:37:58)
- Location:
- c/src/lib/libbsp/i386
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i386/pc386/Makefile.am
r78c9fe8 r364866d 26 26 SUBDIRS = . tools 27 27 28 nodist_include_bsp_HEADERS += include/bspimpl.h 28 29 include_bsp_HEADERS = ../../i386/shared/irq/irq.h 29 30 include_bsp_HEADERS += ../../i386/shared/irq/irq_asm.h -
c/src/lib/libbsp/i386/pc386/include/bsp.h
r78c9fe8 r364866d 60 60 #include <rtems/score/cpu.h> 61 61 #include <rtems/bspIo.h> 62 #include <rtems/pci.h>63 62 64 63 #ifdef __cplusplus … … 277 276 void C_dispatch_isr(int vector); 278 277 279 /*280 * PCI Support Methods281 */282 const pci_config_access_functions *pci_bios_initialize(void);283 const pci_config_access_functions *pci_io_initialize(void);284 285 /*286 * Helper to parse boot command line arguments related to the console driver287 */288 void pc386_parse_console_arguments(void);289 290 /*291 * Dynamically probe for PCI UARTS292 */293 void pci_uart_probe(void);294 295 278 #ifdef __cplusplus 296 279 } -
c/src/lib/libbsp/i386/pc386/preinstall.am
r78c9fe8 r364866d 53 53 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/bootcard.h 54 54 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bootcard.h 55 56 $(PROJECT_INCLUDE)/bsp/bspimpl.h: include/bspimpl.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) 57 $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/bspimpl.h 58 PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bspimpl.h 55 59 56 60 $(PROJECT_INCLUDE)/bsp/irq.h: ../../i386/shared/irq/irq.h $(PROJECT_INCLUDE)/bsp/$(dirstamp) -
c/src/lib/libbsp/i386/pc386/startup/bspstart.c
r78c9fe8 r364866d 28 28 29 29 #include <bsp.h> 30 #include <bsp/bspimpl.h> 30 31 #include <bsp/irq.h> 31 32 #include <rtems/pci.h> -
c/src/lib/libbsp/i386/shared/pci/pci_io.c
r78c9fe8 r364866d 1 /** 2 * @file 3 * 4 * PCI Support when Configuration Space is in I/O 5 */ 6 7 /* 8 * COPYRIGHT (c) 2016. 9 * On-Line Applications Research Corporation (OAR). 10 * 11 * The license and distribution terms for this file may be 12 * found in the file LICENSE in this distribution or at 13 * http://www.rtems.org/license/LICENSE. 14 */ 15 1 16 #include <rtems.h> 2 #include <rtems/pci.h>3 17 #include <bsp.h> 18 #include <bsp/bspimpl.h> 4 19 5 20 static int pci_io_initialized = 0; -
c/src/lib/libbsp/i386/shared/pci/pcibios.c
r78c9fe8 r364866d 1 /** 2 * @file 3 * 4 * PCI Support when Configuration Space is accessed via BIOS 5 */ 6 1 7 /* 2 8 * This software is Copyright (C) 1998 by T.sqware - all rights limited
Note: See TracChangeset
for help on using the changeset viewer.