-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vineet Gupta
committed
Feb 15, 2013
1 parent
024bfca
commit 6420a11
Showing
5 changed files
with
168 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c121c5063c0674fad6811f0b0d86ec3bc6eecbbd | ||
refs/heads/master: ee36d1722112f33725ec1a7fc02f6c46e630fd27 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
* | ||
* vineetg: Feb 2009 | ||
* -For AA4 board, IRQ assignments to peripherals | ||
*/ | ||
|
||
#ifndef __PLAT_IRQ_H | ||
#define __PLAT_IRQ_H | ||
|
||
#define NR_IRQS 16 | ||
|
||
#define UART0_IRQ 5 | ||
#define UART1_IRQ 10 | ||
#define UART2_IRQ 11 | ||
|
||
#define VMAC_IRQ 6 | ||
|
||
#define IDE_IRQ 13 | ||
#define PCI_IRQ 14 | ||
#define PS2_IRQ 15 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
* | ||
* vineetg: Feb 2009 | ||
* -For AA4 board, System Memory Map for Peripherals etc | ||
*/ | ||
|
||
#ifndef __PLAT_MEMMAP_H | ||
#define __PLAT_MEMMAP_H | ||
|
||
#define UART0_BASE 0xC0FC1000 | ||
#define UART1_BASE 0xC0FC1100 | ||
|
||
#define VMAC_REG_BASEADDR 0xC0FC2000 | ||
|
||
#define IDE_CONTROLLER_BASE 0xC0FC9000 | ||
|
||
#define AHB_PCI_HOST_BRG_BASE 0xC0FD0000 | ||
|
||
#define PGU_BASEADDR 0xC0FC8000 | ||
#define VLCK_ADDR 0xC0FCF028 | ||
|
||
#define BVCI_LAT_UNIT_BASE 0xC0FED000 | ||
|
||
#define PS2_BASE_ADDR 0xC0FCC000 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters