Skip to content

Commit

Permalink
Merge branches 'arm-mm', 'at91', 'clkevts', 'imx', 'iop', 'misc', 'ne…
Browse files Browse the repository at this point in the history
…tx', 'ns9xxx', 'omap', 'pxa', 'rpc', 's3c' and 'sa1100' into devel
  • Loading branch information
Russell King authored and Russell King committed May 6, 2007
13 parents 3603ab2 + 93afa75 + 075192a + ff4bfb2 + ad902cb + 1b11652 + fe7fdb8 + 13ea55b + fcf126d + 7053acb + 5559bca + d0fdb5a + d0a9d75 commit 6f95416
Show file tree
Hide file tree
Showing 130 changed files with 5,222 additions and 1,106 deletions.
2 changes: 1 addition & 1 deletion Documentation/spi/pxa2xx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static struct resource pxa_spi_nssp_resources[] = {

static struct pxa2xx_spi_master pxa_nssp_master_info = {
.ssp_type = PXA25x_NSSP, /* Type of SSP */
.clock_enable = CKEN9_NSSP, /* NSSP Peripheral clock */
.clock_enable = CKEN_NSSP, /* NSSP Peripheral clock */
.num_chipselect = 1, /* Matches the number of chips attached to NSSP */
.enable_dma = 1, /* Enables NSSP DMA */
};
Expand Down
20 changes: 20 additions & 0 deletions arch/arm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ config GENERIC_TIME
bool
default n

config GENERIC_CLOCKEVENTS
bool
default n

config MMU
bool
default y
Expand Down Expand Up @@ -67,6 +71,14 @@ config GENERIC_HARDIRQS
bool
default y

config STACKTRACE_SUPPORT
bool
default y

config LOCKDEP_SUPPORT
bool
default y

config TRACE_IRQFLAGS_SUPPORT
bool
default y
Expand Down Expand Up @@ -162,6 +174,8 @@ config ARCH_VERSATILE
select ARM_AMBA
select ARM_VIC
select ICST307
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
This enables support for ARM Ltd Versatile board.

Expand Down Expand Up @@ -262,6 +276,7 @@ config ARCH_IXP4XX
bool "IXP4xx-based"
depends on MMU
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
Support for Intel's IXP4XX (XScale) family of processors.

Expand Down Expand Up @@ -363,6 +378,7 @@ config ARCH_LH7A40X
config ARCH_OMAP
bool "TI OMAP"
select GENERIC_GPIO
select GENERIC_TIME
help
Support for TI's OMAP platform (OMAP1 and OMAP2).

Expand Down Expand Up @@ -513,6 +529,8 @@ endmenu

menu "Kernel Features"

source "kernel/time/Kconfig"

config SMP
bool "Symmetric Multi-Processing (EXPERIMENTAL)"
depends on EXPERIMENTAL && REALVIEW_MPCORE
Expand Down Expand Up @@ -572,6 +590,7 @@ config PREEMPT

config NO_IDLE_HZ
bool "Dynamic tick timer"
depends on !GENERIC_CLOCKEVENTS
help
Select this option if you want to disable continuous timer ticks
and have them programmed to occur as required. This option saves
Expand Down Expand Up @@ -669,6 +688,7 @@ config LEDS_TIMER
bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
MACH_OMAP_H2 || MACH_OMAP_PERSEUS2
depends on LEDS
depends on !GENERIC_CLOCKEVENTS
default y if ARCH_EBSA110
help
If you say Y here, one of the system LEDs (the green one on the
Expand Down
6 changes: 6 additions & 0 deletions arch/arm/boot/compressed/head-at91rm9200.S
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
cmp r7, r3
beq 99f

@ picotux 200 : 963
mov r3, #(MACH_TYPE_PICOTUX2XX & 0xff)
orr r3, r3, #(MACH_TYPE_PICOTUX2XX & 0xff00)
cmp r7, r3
beq 99f

@ Ajeco 1ARM : 1075
mov r3, #(MACH_TYPE_ONEARM & 0xff)
orr r3, r3, #(MACH_TYPE_ONEARM & 0xff00)
Expand Down
Loading

0 comments on commit 6f95416

Please sign in to comment.