~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to arch/arm/mach-msm/include/mach/entry-macro-vic.S

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno, Martin Michlmayr
  • Date: 2011-04-06 13:53:30 UTC
  • mfrom: (43.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110406135330-wjufxhd0tvn3zx4z
Tags: 2.6.38-3
[ Ben Hutchings ]
* [ppc64] Add to linux-tools package architectures (Closes: #620124)
* [amd64] Save cr4 to mmu_cr4_features at boot time (Closes: #620284)
* appletalk: Fix bugs introduced when removing use of BKL
* ALSA: Fix yet another race in disconnection
* cciss: Fix lost command issue
* ath9k: Fix kernel panic in AR2427
* ses: Avoid kernel panic when lun 0 is not mapped
* PCI/ACPI: Report ASPM support to BIOS if not disabled from command line

[ Aurelien Jarno ]
* rtlwifi: fix build when PCI is not enabled.

[ Martin Michlmayr ]
* rtlwifi: Eliminate udelay calls with too large values (Closes: #620204)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 Google, Inc.
 
3
 * Author: Brian Swetland <swetland@google.com>
 
4
 *
 
5
 * This software is licensed under the terms of the GNU General Public
 
6
 * License version 2, as published by the Free Software Foundation, and
 
7
 * may be copied, distributed, and modified under those terms.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 */
 
15
 
 
16
#include <mach/msm_iomap.h>
 
17
 
 
18
        .macro  disable_fiq
 
19
        .endm
 
20
 
 
21
        .macro  get_irqnr_preamble, base, tmp
 
22
        @ enable imprecise aborts
 
23
        cpsie   a
 
24
        mov     \base, #MSM_VIC_BASE
 
25
        .endm
 
26
 
 
27
        .macro  arch_ret_to_user, tmp1, tmp2
 
28
        .endm
 
29
 
 
30
        .macro  get_irqnr_and_base, irqnr, irqstat, base, tmp
 
31
        @ 0xD0 has irq# or old irq# if the irq has been handled
 
32
        @ 0xD4 has irq# or -1 if none pending *but* if you just
 
33
        @ read 0xD4 you never get the first irq for some reason
 
34
        ldr     \irqnr, [\base, #0xD0]
 
35
        ldr     \irqnr, [\base, #0xD4]
 
36
        cmp     \irqnr, #0xffffffff
 
37
        .endm