~fboudra/qemu-linaro/new-upstream-release-1.2.0-2012.09-0ubuntu1

« back to all changes in this revision

Viewing changes to hw/imx.h

  • Committer: Fathi Boudra
  • Author(s): Fathi Boudra
  • Date: 2012-08-21 06:47:11 UTC
  • mfrom: (0.1.16)
  • Revision ID: fathi.boudra@linaro.org-20120821064711-7yxmubp2v8a44xce
Tags: 1.1.50-2012.08-0ubuntu1
* New upstream release.
  - support emulated systems with more than 2G of memory. (LP: #1030588)
* Drop powerpc-missing-include.patch - merged upstream.
* Update debian/control: 
  - drop perl build dependency.
  - add libfdt-dev build dependency.
* Update debian/qemu-keymaps.install file.
* Update debian/rules:
  - update QEMU_CPU for ARM architecture: armv4l -> armv7l.
  - update conf_audio_drv: default to PulseAudio since PA is the default on
    Ubuntu.
  - enable KVM on ARM architecture.
  - enable flat device tree support (--enable-fdt). (LP: #1030594)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * i.MX31 emulation
 
3
 *
 
4
 * Copyright (C) 2012 Peter Chubb
 
5
 * NICTA
 
6
 *
 
7
 * This code is released under the GPL, version 2.0 or later
 
8
 * See the file `../COPYING' for details.
 
9
 */
 
10
 
 
11
#ifndef IMX_H
 
12
#define IMX_H
 
13
 
 
14
void imx_serial_create(int uart, const target_phys_addr_t addr, qemu_irq irq);
 
15
 
 
16
typedef enum  {
 
17
    NOCLK,
 
18
    MCU,
 
19
    HSP,
 
20
    IPG,
 
21
    CLK_32k
 
22
} IMXClk;
 
23
 
 
24
uint32_t imx_clock_frequency(DeviceState *s, IMXClk clock);
 
25
 
 
26
void imx_timerp_create(const target_phys_addr_t addr,
 
27
                      qemu_irq irq,
 
28
                      DeviceState *ccm);
 
29
void imx_timerg_create(const target_phys_addr_t addr,
 
30
                      qemu_irq irq,
 
31
                      DeviceState *ccm);
 
32
 
 
33
 
 
34
#endif /* IMX_H */