~ubuntu-branches/ubuntu/vivid/qemu/vivid

« back to all changes in this revision

Viewing changes to .pc/ubuntu/linaro/0029-SPI-devices-convert-to-qdev.patch/include/hw/devices.h

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2014-02-25 22:31:43 UTC
  • mfrom: (1.8.5)
  • Revision ID: package-import@ubuntu.com-20140225223143-odhqxfc60wxrjl15
Tags: 2.0.0~rc1+dfsg-0ubuntu1
* Merge 2.0.0-rc1
* debian/rules: consolidate ppc filter entries.
* Move qemu-system-arch64 into qemu-system-arm
* debian/patches/define-trusty-machine-type.patch: define a trusty machine
  type, currently the same as pc-i440fx-2.0, to put is in a better position
  to enable live migrations from trusty onward.  (LP: #1294823)
* debian/control: build-dep on libfdt >= 1.4.0  (LP: #1295072)
* Merge latest upstream git to commit dc9528f
* Debian/rules:
  - remove -enable-uname-release=2.6.32
  - don't make the aarch64 target Ubuntu-specific.
* Remove patches which are now upstream:
  - fix-smb-security-share.patch
  - slirp-smb-redirect-port-445-too.patch 
  - linux-user-Implement-sendmmsg-syscall.patch (better version is upstream)
  - signal-added-a-wrapper-for-sigprocmask-function.patch
  - ubuntu/signal-sigsegv-protection-on-do_sigprocmask.patch
  - ubuntu/Don-t-block-SIGSEGV-at-more-places.patch
  - ubuntu/ppc-force-cpu-threads-count-to-be-power-of-2.patch
* add link for /usr/share/qemu/bios-256k.bin
* Remove all linaro patches.
* Remove all arm64/ patches.  Many but not all are upstream.
* Remove CVE-2013-4377.patch which is upstream.
* debian/control-in: don't make qemu-system-aarch64 ubuntu-specific

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef QEMU_DEVICES_H
2
 
#define QEMU_DEVICES_H
3
 
 
4
 
#include "hw/irq.h"
5
 
 
6
 
/* ??? Not all users of this file can include cpu-common.h.  */
7
 
struct MemoryRegion;
8
 
 
9
 
/* Devices that have nowhere better to go.  */
10
 
 
11
 
/* smc91c111.c */
12
 
void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
13
 
 
14
 
/* lan9118.c */
15
 
void lan9118_init(NICInfo *, uint32_t, qemu_irq);
16
 
 
17
 
/* tsc210x.c */
18
 
uWireSlave *tsc2102_init(qemu_irq pint);
19
 
uWireSlave *tsc2301_init(qemu_irq penirq, qemu_irq kbirq, qemu_irq dav);
20
 
I2SCodec *tsc210x_codec(uWireSlave *chip);
21
 
uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
22
 
void tsc210x_set_transform(uWireSlave *chip,
23
 
                MouseTransformInfo *info);
24
 
void tsc210x_key_event(uWireSlave *chip, int key, int down);
25
 
 
26
 
/* tsc2005.c */
27
 
void *tsc2005_init(qemu_irq pintdav);
28
 
uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
29
 
void tsc2005_set_transform(void *opaque, MouseTransformInfo *info,
30
 
                           int z1_cons, int z2_cons);
31
 
 
32
 
/* stellaris_input.c */
33
 
void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
34
 
 
35
 
/* blizzard.c */
36
 
void *s1d13745_init(qemu_irq gpio_int);
37
 
void s1d13745_write(void *opaque, int dc, uint16_t value);
38
 
void s1d13745_write_block(void *opaque, int dc,
39
 
                void *buf, size_t len, int pitch);
40
 
uint16_t s1d13745_read(void *opaque, int dc);
41
 
 
42
 
/* cbus.c */
43
 
typedef struct {
44
 
    qemu_irq clk;
45
 
    qemu_irq dat;
46
 
    qemu_irq sel;
47
 
} CBus;
48
 
CBus *cbus_init(qemu_irq dat_out);
49
 
void cbus_attach(CBus *bus, void *slave_opaque);
50
 
 
51
 
void *retu_init(qemu_irq irq, int vilma);
52
 
void *tahvo_init(qemu_irq irq, int betty);
53
 
 
54
 
void retu_key_event(void *retu, int state);
55
 
 
56
 
/* tc6393xb.c */
57
 
typedef struct TC6393xbState TC6393xbState;
58
 
#define TC6393XB_RAM    0x110000 /* amount of ram for Video and USB */
59
 
TC6393xbState *tc6393xb_init(struct MemoryRegion *sysmem,
60
 
                             uint32_t base, qemu_irq irq);
61
 
void tc6393xb_gpio_out_set(TC6393xbState *s, int line,
62
 
                    qemu_irq handler);
63
 
qemu_irq *tc6393xb_gpio_in_get(TC6393xbState *s);
64
 
qemu_irq tc6393xb_l3v_get(TC6393xbState *s);
65
 
 
66
 
/* sm501.c */
67
 
void sm501_init(struct MemoryRegion *address_space_mem, uint32_t base,
68
 
                uint32_t local_mem_bytes, qemu_irq irq,
69
 
                CharDriverState *chr);
70
 
 
71
 
#endif