URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [hal/] [arm/] [xscale/] [grg/] [current/] [src/] [grg_pci.c] - Rev 786
Compare with Previous | Blame | View Log
//========================================================================== // // grg_pci.c // // HAL PCI board support code for Intel XScale GRG // //========================================================================== // ####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. // Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. // // eCos is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2 or (at your option) any later // version. // // eCos is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License // for more details. // // You should have received a copy of the GNU General Public License // along with eCos; if not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // As a special exception, if other files instantiate templates or use // macros or inline functions from this file, or you compile this file // and link it with other works to produce a work based on this file, // this file does not by itself cause the resulting work to be covered by // the GNU General Public License. However the source code for this file // must still be made available in accordance with section (3) of the GNU // General Public License v2. // // This exception does not invalidate any other reasons why a work based // on this file might be covered by the GNU General Public License. // ------------------------------------------- // ####ECOSGPLCOPYRIGHTEND#### //========================================================================== //#####DESCRIPTIONBEGIN#### // // Author(s): msalter // Contributors: msalter // Date: 2003-02-05 // Purpose: HAL PCI board support // Description: Implementations of HAL board interfaces // //####DESCRIPTIONEND#### // //========================================================================*/ #include <pkgconf/hal.h> #include <pkgconf/system.h> #include CYGBLD_HAL_PLATFORM_H #ifdef CYGPKG_IO_PCI #include <cyg/infra/cyg_type.h> // base types #include <cyg/infra/cyg_trac.h> // tracing macros #include <cyg/infra/cyg_ass.h> // assertion macros #include <cyg/hal/hal_io.h> // IO macros #include <cyg/hal/hal_if.h> // calling interface API #include <cyg/hal/hal_arch.h> // Register state info #include <cyg/hal/hal_diag.h> #include <cyg/hal/hal_intr.h> // Interrupt names #include <cyg/hal/hal_cache.h> #include <cyg/io/pci_hw.h> #include <cyg/io/pci.h> #define IXP425_PCI_MAX_DEV 4 #define IXP425_PCI_IRQ_LINES 4 // PCI pin mappings #define PCI_CLK_GPIO 14 // CLK0 #define PCI_RESET_GPIO 12 #define PCI_INTA_GPIO 11 #define INTA CYGNUM_HAL_INTERRUPT_GPIO11 void cyg_hal_plf_pci_translate_interrupt(cyg_uint32 bus, cyg_uint32 devfn, CYG_ADDRWORD *vec, cyg_bool *valid) { *vec = INTA; *valid = true; } #define HAL_PCI_CLOCK_ENABLE() \ *IXP425_GPCLKR |= GPCLKR_CLK0_ENABLE; // GPIO(0) used for PCI clock #define HAL_PCI_CLOCK_DISABLE() \ *IXP425_GPCLKR &= ~GPCLKR_CLK0_ENABLE; // GPIO(0) used for PCI clock #define HAL_PCI_CLOCK_CONFIG() \ *IXP425_GPCLKR |= GPCLKR_CLK0_PCLK2; #define HAL_PCI_RESET_ASSERT() \ HAL_GPIO_OUTPUT_CLEAR(PCI_RESET_GPIO); #define HAL_PCI_RESET_DEASSERT() \ HAL_GPIO_OUTPUT_SET(PCI_RESET_GPIO); void hal_plf_pci_init(void) { #if defined(CYG_HAL_STARTUP_ROM) || defined(CYG_HAL_STARTUP_ROMRAM) HAL_PCI_RESET_ASSERT(); HAL_PCI_CLOCK_DISABLE(); // Set GPIO line direction HAL_GPIO_OUTPUT_ENABLE(PCI_CLK_GPIO); HAL_GPIO_OUTPUT_ENABLE(PCI_RESET_GPIO); HAL_GPIO_OUTPUT_DISABLE(PCI_INTA_GPIO); // configure PCI interrupt lines for active low irq HAL_INTERRUPT_CONFIGURE(INTA, 1, 0); // wait 1ms to satisfy "minimum reset assertion time" of the PCI spec. HAL_DELAY_US(1000); HAL_PCI_CLOCK_CONFIG(); HAL_PCI_CLOCK_ENABLE(); // wait 100us to satisfy "minimum reset assertion time from clock stable" // requirement of the PCI spec. HAL_DELAY_US(100); HAL_PCI_RESET_DEASSERT(); #endif } #endif // CYGPKG_IO_PCI