An error occurred fetching the project authors.
- 01 Feb, 2008 1 commit
-
-
Adrian Bunk authored
A HOWTO that hasn't been updated for half a dozen years no longer "contains valuable information about which PCI hardware does work under Linux and which doesn't". Signed-off-by:
Adrian Bunk <bunk@kernel.org> Signed-off-by:
Greg Kroah-Hartman <gregkh@suse.de>
-
- 30 Jan, 2008 1 commit
-
-
Nick Piggin authored
The break_lock data structure and code for spinlocks is quite nasty. Not only does it double the size of a spinlock but it changes locking to a potentially less optimal trylock. Put all of that under CONFIG_GENERIC_LOCKBREAK, and introduce a __raw_spin_is_contended that uses the lock data itself to determine whether there are waiters on the lock, to be used if CONFIG_GENERIC_LOCKBREAK is not set. Rename need_lockbreak to spin_needbreak, make it use spin_is_contended to decouple it from the spinlock implementation, and make it typesafe (rwlocks do not have any need_lockbreak sites -- why do they even get bloated up with that break_lock then?). Signed-off-by:
Nick Piggin <npiggin@suse.de> Signed-off-by:
Ingo Molnar <mingo@elte.hu> Signed-off-by:
Thomas Gleixner <tglx@linutronix.de>
-
- 26 Jan, 2008 16 commits
-
-
Russell King authored
There have been patches hanging around for ages to add support for cpufreq to PXA255 processors. It's about time we applied one. Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Russell King authored
Apparantly, the generic time subsystem can accurately emulate periodic mode via the one-shot support code, so we don't need our own periodic emulation code anymore. Just ensure that we build support for one shot into the generic time subsystem. Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Ronen Shitrit authored
serial, NOR, PCI and Ethernet is activated at the moment. Signed-off-by:
Ronen Shitrit <rshitrit@marvell.com> Reviewed-by:
Tzachi Perelstein <tzachi@marvell.com> Reviewed-by:
Nicolas Pitre <nico@marvell.com> Reviewed-by:
Lennert Buytenhek <buytenh@marvell.com> Acked-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Tzachi Perelstein authored
Signed-off-by:
Tzachi Perelstein <tzachi@marvell.com> Reviewed-by:
Nicolas Pitre <nico@marvell.com> Reviewed-by:
Lennert Buytenhek <buytenh@marvell.com> Acked-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Tzachi Perelstein authored
Signed-off-by:
Tzachi Perelstein <tzachi@marvell.com> Signed-off-by:
Nicolas Pitre <nico@marvell.com> Acked-by:
David Brownell <david-b@pacbell.net>
-
Tzachi Perelstein authored
This patch adds support for PCI and PCI-E controllers in the Orion, Orion-NAS and Orion2. Signed-off-by:
Tzachi Perelstein <tzachi@marvell.com> Reviewed-by:
Nicolas Pitre <nico@marvell.com> Reviewed-by:
Lennert Buytenhek <buytenh@marvell.com> Acked-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Tzachi Perelstein authored
The Marvell Orion is a family of ARM SoCs with a DDR/DDR2 memory controller, 10/100/1000 ethernet MAC, and USB 2.0 interfaces, and, depending on the specific model, PCI-E interface, PCI-X interface, SATA controllers, crypto unit, SPI interface, SDIO interface, device bus, NAND controller, DMA engine and/or XOR engine. This contains the basic structure and architecture register definitions. Signed-off-by:
Tzachi Perelstein <tzachi@marvell.com> Reviewed-by:
Nicolas Pitre <nico@marvell.com> Reviewed-by:
Lennert Buytenhek <buytenh@marvell.com> Acked-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Assaf Hoffman authored
The Feroceon is a family of independent ARMv5TE compliant CPU core implementations, supporting a variable depth pipeline and out-of-order execution. The Feroceon is configurable with VFP support, and the later models in the series are superscalar with up to two instructions per clock cycle. This patch adds the initial low-level cache/TLB handling for this core. Signed-off-by:
Assaf Hoffman <hoffman@marvell.com> Reviewed-by:
Tzachi Perelstein <tzachi@marvell.com> Reviewed-by:
Nicolas Pitre <nico@marvell.com> Reviewed-by:
Lennert Buytenhek <buytenh@marvell.com> Acked-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Andrew Victor authored
Add support for Atmel's AT91CAP9 Customizable Microcontroller family. <http://www.atmel.com/products/AT91CAP/Default.asp> Signed-off-by:
Stelian Pop <stelian@popies.net> Signed-off-by:
Andrew Victor <linux@maxim.org.za> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
David Brownell authored
This makes HZ configurable on AT91, following the model used on OMAP. It defaults to a power of two on AT91rm9200 chips, avoiding rounding errors which come from dividing a 32 KiHz clock to generate scheduler irqs; and uses 100 on AT91sam926x chips, using MCK/16 (multi-MHZ). Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net> Acked-by:
Remy Bhmer <linux@bohmer.net> Acked-by:
Andrew Victor <andrew@sanpeople.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Catalin Marinas authored
This patch enables the use of the Advanced SIMD (NEON) extension on ARMv7. The NEON technology is a 64/128-bit hybrid SIMD architecture for accelerating the performance of multimedia and signal processing applications. The extension shares the registers with the VFP unit and enabling/disabling and saving/restoring follow the same rules. In addition, there are instructions that do not have the appropriate CP number encoded, the checks being made in the call_fpe function. Signed-off-by:
Catalin Marinas <catalin.marinas@arm.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Catalin Marinas authored
This patch adds the support for VFPv3 (the kernel currently supports VFPv2). The main difference is 32 double registers (compared to 16). Signed-off-by:
Catalin Marinas <catalin.marinas@arm.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Russell King authored
Add generic clock source support for SA11x0 platforms. Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Brian Swetland authored
Add support for the Qualcomm MSM7200A eval board. Common devices are defined in common.c, to avoid excessive cut'n'pasting them into other board files. Signed-off-by:
Brian Swetland <swetland@google.com>
-
Brian Swetland authored
- core header files for arch-msm - Kconfig and Makefiles to enable ARCH_MSM7X00A builds - MSM7X00A specific arch_idle - peripheral iomap and irq number definitions Signed-off-by:
Brian Swetland <swetland@google.com>
-
Herbert Valerio Riedel authored
Implement new GPIO API for ep93xx platform as defined in Documentation/gpio.txt and provide transitional __deprecated wrappers for the previous gpio_line_* functions. Signed-off-by:
Herbert Valerio Riedel <hvr@gnu.org> Acked-by:
Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 20 Jan, 2008 1 commit
-
-
Dan Williams authored
'select' used by config symbol 'INTEL_IOATDMA' refers to undefined symbol 'DCA' Although drivers/dma is currently the only user future drivers outside of drivers/dma may select this option so it is better to add this to arch/arm/Kconfig than move DCA to drivers/dma/Kconfig. Signed-off-by:
Dan Williams <dan.j.williams@intel.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 15 Jan, 2008 1 commit
-
-
Linus Torvalds authored
Commit 09cadedb ("Combine instrumentation menus in kernel/Kconfig.instrumentation") broke ARM profiling support, since ARM has some extra Kconfig options and doesn't just use the common OPROFILE/KPROBES config options. Rather than just revert the thing outright, or add ARM-specific knowledge to the generic Kconfig.instrumentation file (where the only and whole point was to be generic, not too architecture-specific), this just makes ARM not use the generic version, since it doesn't suit it. So create an arm-specific version of Kconfig.instrumentation instead, and use that. Acked-by:
Ingo Molnar <mingo@elte.hu> Acked-by:
Russell King <rmk+lkml@arm.linux.org.uk> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- 08 Dec, 2007 1 commit
-
-
Mike Rapoport authored
Change printk to dev_dbg in ITE 8152 driver and remove printk in ITE 8152 ISR. Move PCI intialization from ->scan to ->preinit method Signed-off-by:
Mike Rapoport <mike@compulab.co.il> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 07 Nov, 2007 1 commit
-
-
Russell King authored
Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 19 Oct, 2007 2 commits
-
-
Matt LaPlante authored
Most of these fixes were already submitted for old kernel versions, and were approved, but for some reason they never made it into the releases. Because this is a consolidation of a couple old missed patches, it touches both Kconfigs and documentation texts. Signed-off-by:
Matt LaPlante <kernel1@cyberdogtech.com> Acked-by:
Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by:
Adrian Bunk <bunk@kernel.org>
-
Mathieu Desnoyers authored
Quoting Randy: "It seems sad that this patch sources Kconfig.marker, a 7-line file, 20-something times. Yes, you (we) don't want to put those 7 lines into 20-something different files, so sourcing is the right thing. However, what you did for avr32 seems more on the right track to me: make _one_ Instrumentation support menu that includes PROFILING, OPROFILE, KPROBES, and MARKERS and then use (source) that in all of the arches." Signed-off-by:
Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> Acked-by:
Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- 15 Oct, 2007 1 commit
-
-
eric miao authored
Signed-off-by:
eric miao <eric.y.miao@gmail.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 12 Oct, 2007 4 commits
-
-
Russell King authored
Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Uwe Kleine-König authored
Signed-off-by:
Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Uwe Kleine-König authored
Signed-off-by:
Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Uwe Kleine-König authored
This implementation conforms to the general GPIO API introduced in 2.6.21. This patch was signed-of by David Brownell before I exported the functions using EXPORT_SYMBOL. Signed-off-by:
Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 22 Aug, 2007 1 commit
-
-
David Brownell authored
Bugfixes for the OSK led support: - Fix Kconfig merge glitches: Mistral handles idle and timer leds just fine - Fix pm_suspend() runtime botch: can't sleep, so can't touch tps65010 leds Improvements: - Switch sense of Mistral idle led, so idle == off Probably the TPS65010 leds should be handled only by the "new led" API. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net> Signed-off-by:
Tony Lindgren <tony@atomide.com>
-
- 31 Jul, 2007 1 commit
-
-
Andrew Morton authored
scripts/kconfig/conf -o arch/arm/Kconfig arch/arm/Kconfig:994: can't open file "drivers/acorn/block/Kconfig" Cc: Adrian Bunk <bunk@stusta.de> Cc: Ian Molton <spyro@f2s.com> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- 24 Jul, 2007 1 commit
-
-
Eric Miao authored
make ARCH_PXA select GENERIC_CLOCKEVENTS to fix the building issue due to merge of clockevents based PXA timer Signed-off-by:
eric miao <eric.y.miao@gmail.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 22 Jul, 2007 2 commits
-
-
Ben Dooks authored
Create the initial arch/arm/plat-s3c directory and start linking it into the arch/arm build heirarchy ready to receive the generic parts of the S3C24XX support to be used when adding S3C6400 devices. Signed-off-by:
Ben Dooks <ben-linux@fluff.org> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Quinn Jensen authored
This patch adds the foundation pieces for the Freescale MXC platforms, including i.MX2 and i.MX3 based systems. The bare-bones MX31 support in this patch boots to the rootdev panic with 8250 serial console configured "console=ttyS0,115200". It assumes that Redboot is the boot loader. Signed-off-by:
Quinn Jensen <quinn.jensen@freescale.com> Acked-by:
Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 13 Jul, 2007 1 commit
-
-
Dan Williams authored
Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by:
Dan Williams <dan.j.williams@intel.com>
-
- 12 Jul, 2007 4 commits
-
-
Andrew Victor authored
Driver to control the GPIO pins on the KS8695 processor. The driver natively supports the Generic GPIO interface. Signed-off-by:
Andrew Victor <andrew@sanpeople.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Pavel Pisa authored
Support clock event source based on i.MX general purpose timer in free running timer mode. Signed-off-by:
Pavel Pisa <pisa@cmp.felk.cvut.cz> Acked-by:
Thomas Gleixner <tglx@linutronix.de> Acked-by:
Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Pavel Pisa authored
Support for generic input output for MX1 family. The implementation prevents allocation of one pin by two users, but does not store pointer to the user description permanently, because this solution would have bigger memory overhead. The simple way to integrate code with per BSP pins setup and allocation is required else all GPIO registration checking is useless. The function imx_gpio_setup_multiple_pins() can be used for this purpose in future. Signed-off-by:
Pavel Pisa <pisa@cmp.felk.cvut.cz> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
Vladimir Barinov authored
Support GPIO driver for TI DaVinci SoC Signed-off-by:
Vladimir Barinov <vbarino@ru.mvista.com> Acked-by:
David Brownell <david-b@pacbell.net> Acked-by:
Kevin Hilman <khilman@mvista.com> Signed-off-by:
Russell King <rmk+kernel@arm.linux.org.uk>
-
- 11 Jul, 2007 1 commit
-
-
Matthew Wilcox authored
The PCI syscalls are built on every architecture except X86, but only a few have ever hooked them up. Use a new Kconfig symbol to save a couple of kB on the architectures that have never used the syscalls. Tested on x86 and ia64 only. Signed-off-by:
Matthew Wilcox <matthew@wil.cx> Signed-off-by:
Greg Kroah-Hartman <gregkh@suse.de>
-