~ubuntu-branches/debian/jessie/qemu/jessie

« back to all changes in this revision

Viewing changes to hw/mainstone.h

  • Committer: Package Import Robot
  • Author(s): Vagrant Cascadian
  • Date: 2011-10-03 12:29:18 UTC
  • mfrom: (1.2.13) (10.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20111003122918-zc4kv6epchrbgdta
Tags: 0.15.0+dfsg-1
* New upstream version.
* Install new qemu-system, qemu-user and qemu-user-static variants: 
  lm32, microblazeel, s390x, unicore32
* Patch from upstream to set QEMU_INCLUDES before QEMU_CFLAGS.
* Update debian/watch to check http://qemu.org/download.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * PXA270-based Intel Mainstone platforms.
3
 
 *
4
 
 * Copyright (c) 2007 by Armin Kuster <akuster@kama-aina.net> or
5
 
 *                                    <akuster@mvista.com>
6
 
 *
7
 
 * This code is licensed under the GNU GPL v2.
8
 
 */
9
 
 
10
 
#ifndef __MAINSTONE_H__
11
 
#define __MAINSTONE_H__
12
 
 
13
 
/* Device addresses */
14
 
#define MST_FPGA_PHYS   0x08000000
15
 
#define MST_ETH_PHYS    0x10000300
16
 
#define MST_FLASH_0             0x00000000
17
 
#define MST_FLASH_1             0x04000000
18
 
 
19
 
/* IRQ definitions */
20
 
#define MMC_IRQ       0
21
 
#define USIM_IRQ      1
22
 
#define USBC_IRQ      2
23
 
#define ETHERNET_IRQ  3
24
 
#define AC97_IRQ      4
25
 
#define PEN_IRQ       5
26
 
#define MSINS_IRQ     6
27
 
#define EXBRD_IRQ     7
28
 
#define S0_CD_IRQ     9
29
 
#define S0_STSCHG_IRQ 10
30
 
#define S0_IRQ        11
31
 
#define S1_CD_IRQ     13
32
 
#define S1_STSCHG_IRQ 14
33
 
#define S1_IRQ        15
34
 
 
35
 
extern qemu_irq
36
 
*mst_irq_init(PXA2xxState *cpu, uint32_t base, int irq);
37
 
 
38
 
#endif /* __MAINSTONE_H__ */