mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
36 lines
1.2 KiB
C
36 lines
1.2 KiB
C
/*
|
|
* (C) Copyright 2002
|
|
* Torsten Demke, FORCE Computers GmbH. torsten.demke@fci.com
|
|
*
|
|
* (C) Copyright 2000
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* (C) Copyright 2002
|
|
* James Dougherty (jfd@broadcom.com)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __EXALION_H
|
|
#define __EXALION_H
|
|
|
|
/* IRQ settings */
|
|
#define PCI_INT_NA (0xff) /* PCI Intr. not used */
|
|
#define PCI_INT_A (0x09) /* PCI Intr. A Interrupt Request Line Nr. */
|
|
#define PCI_INT_B (0x0a) /* PCI Intr. B Interrupt Request Line Nr. */
|
|
#define PCI_INT_C (0x0b) /* PCI Intr. C Interrupt Request Line Nr. */
|
|
#define PCI_INT_D (0x0c) /* PCI Intr. D Interrupt Request Line Nr. */
|
|
#if defined (CPU_MPC8245)
|
|
#define LN_1_INT PCI_INT_B /* ethernet interrupt level */
|
|
#define LN_2_INT PCI_INT_C /* ethernet interrupt level */
|
|
#define BCM_1_INT PCI_INT_A /* BCM5690 interrupt level */
|
|
#define BCM_2_INT PCI_INT_B /* BCM5690 interrupt level */
|
|
#elif defined (CPU_MPC8240)
|
|
#define BCM_INT PCI_INT_B /* BCM5600 interrupt level */
|
|
#define LN_INT PCI_INT_C /* ethernet interrupt level */
|
|
#endif
|
|
|
|
#ifndef __ASSEMBLY__
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
#endif /* __EXALION_H */
|