Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
52435bfc
Commit
52435bfc
authored
Jan 07, 2009
by
Haavard Skinnemoen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branches 'fixes', 'cleanups' and 'boards'
parents
ede6f5ae
d305d8d3
e2450019
4209324a
Changes
32
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
2252 additions
and
80 deletions
+2252
-80
arch/avr32/Kconfig
arch/avr32/Kconfig
+19
-0
arch/avr32/Makefile
arch/avr32/Makefile
+1
-0
arch/avr32/boards/atngw100/setup.c
arch/avr32/boards/atngw100/setup.c
+1
-1
arch/avr32/boards/atstk1000/atstk1002.c
arch/avr32/boards/atstk1000/atstk1002.c
+2
-18
arch/avr32/boards/atstk1000/atstk1003.c
arch/avr32/boards/atstk1000/atstk1003.c
+2
-18
arch/avr32/boards/atstk1000/atstk1004.c
arch/avr32/boards/atstk1000/atstk1004.c
+1
-1
arch/avr32/boards/favr-32/setup.c
arch/avr32/boards/favr-32/setup.c
+11
-20
arch/avr32/boards/hammerhead/Kconfig
arch/avr32/boards/hammerhead/Kconfig
+43
-0
arch/avr32/boards/hammerhead/Makefile
arch/avr32/boards/hammerhead/Makefile
+1
-0
arch/avr32/boards/hammerhead/flash.c
arch/avr32/boards/hammerhead/flash.c
+377
-0
arch/avr32/boards/hammerhead/flash.h
arch/avr32/boards/hammerhead/flash.h
+6
-0
arch/avr32/boards/hammerhead/setup.c
arch/avr32/boards/hammerhead/setup.c
+245
-0
arch/avr32/boards/mimc200/setup.c
arch/avr32/boards/mimc200/setup.c
+1
-3
arch/avr32/configs/atngw100_defconfig
arch/avr32/configs/atngw100_defconfig
+1
-1
arch/avr32/configs/atstk1002_defconfig
arch/avr32/configs/atstk1002_defconfig
+1
-1
arch/avr32/configs/atstk1003_defconfig
arch/avr32/configs/atstk1003_defconfig
+1
-1
arch/avr32/configs/atstk1006_defconfig
arch/avr32/configs/atstk1006_defconfig
+1
-1
arch/avr32/configs/hammerhead_defconfig
arch/avr32/configs/hammerhead_defconfig
+1467
-0
arch/avr32/include/asm/kdebug.h
arch/avr32/include/asm/kdebug.h
+1
-0
arch/avr32/kernel/process.c
arch/avr32/kernel/process.c
+1
-0
arch/avr32/kernel/signal.c
arch/avr32/kernel/signal.c
+1
-0
arch/avr32/kernel/sys_avr32.c
arch/avr32/kernel/sys_avr32.c
+1
-0
arch/avr32/mach-at32ap/at32ap700x.c
arch/avr32/mach-at32ap/at32ap700x.c
+3
-3
arch/avr32/mach-at32ap/clock.h
arch/avr32/mach-at32ap/clock.h
+3
-0
arch/avr32/mach-at32ap/include/mach/at32ap700x.h
arch/avr32/mach-at32ap/include/mach/at32ap700x.h
+3
-0
arch/avr32/mach-at32ap/include/mach/portmux.h
arch/avr32/mach-at32ap/include/mach/portmux.h
+1
-1
arch/avr32/mach-at32ap/pio.c
arch/avr32/mach-at32ap/pio.c
+13
-6
arch/avr32/mm/cache.c
arch/avr32/mm/cache.c
+1
-0
arch/avr32/mm/init.c
arch/avr32/mm/init.c
+0
-1
drivers/mmc/host/atmel-mci.c
drivers/mmc/host/atmel-mci.c
+1
-1
include/asm-avr32/syscalls.h
include/asm-avr32/syscalls.h
+39
-0
include/linux/atmel-mci.h
include/linux/atmel-mci.h
+3
-3
No files found.
arch/avr32/Kconfig
View file @
52435bfc
...
...
@@ -122,6 +122,24 @@ config BOARD_ATNGW100
bool "ATNGW100 Network Gateway"
select CPU_AT32AP7000
config BOARD_HAMMERHEAD
bool "Hammerhead board"
select CPU_AT32AP7000
select USB_ARCH_HAS_HCD
help
The Hammerhead platform is built around a AVR32 32-bit microcontroller from Atmel.
It offers versatile peripherals, such as ethernet, usb device, usb host etc.
The board also incooperates a power supply and is a Power over Ethernet (PoE) Powered
Device (PD).
Additonally, a Cyclone III FPGA from Altera is integrated on the board. The FPGA is
mapped into the 32-bit AVR memory bus. The FPGA offers two DDR2 SDRAM interfaces, which
will cover even the most exceptional need of memory bandwidth. Together with the onboard
video decoder the board is ready for video processing.
For more information see: http://www.miromico.com/hammerhead
config BOARD_FAVR_32
bool "Favr-32 LCD-board"
select CPU_AT32AP7000
...
...
@@ -133,6 +151,7 @@ endchoice
source "arch/avr32/boards/atstk1000/Kconfig"
source "arch/avr32/boards/atngw100/Kconfig"
source "arch/avr32/boards/hammerhead/Kconfig"
source "arch/avr32/boards/favr-32/Kconfig"
choice
...
...
arch/avr32/Makefile
View file @
52435bfc
...
...
@@ -33,6 +33,7 @@ head-y += arch/avr32/kernel/head.o
core-y
+=
$(machdirs)
core-$(CONFIG_BOARD_ATSTK1000)
+=
arch
/avr32/boards/atstk1000/
core-$(CONFIG_BOARD_ATNGW100)
+=
arch
/avr32/boards/atngw100/
core-$(CONFIG_BOARD_HAMMERHEAD)
+=
arch
/avr32/boards/hammerhead/
core-$(CONFIG_BOARD_FAVR_32)
+=
arch
/avr32/boards/favr-32/
core-$(CONFIG_BOARD_MIMC200)
+=
arch
/avr32/boards/mimc200/
core-$(CONFIG_LOADER_U_BOOT)
+=
arch
/avr32/boot/u-boot/
...
...
arch/avr32/boards/atngw100/setup.c
View file @
52435bfc
...
...
@@ -19,8 +19,8 @@
#include <linux/types.h>
#include <linux/leds.h>
#include <linux/spi/spi.h>
#include <linux/atmel-mci.h>
#include <asm/atmel-mci.h>
#include <asm/io.h>
#include <asm/setup.h>
...
...
arch/avr32/boards/atstk1000/atstk1002.c
View file @
52435bfc
...
...
@@ -16,12 +16,12 @@
#include <linux/types.h>
#include <linux/spi/spi.h>
#include <linux/spi/at73c213.h>
#include <linux/atmel-mci.h>
#include <video/atmel_lcdc.h>
#include <asm/io.h>
#include <asm/setup.h>
#include <asm/atmel-mci.h>
#include <mach/at32ap700x.h>
#include <mach/board.h>
...
...
@@ -287,23 +287,7 @@ static int __init atstk1002_init(void)
* ATSTK1000 uses 32-bit SDRAM interface. Reserve the
* SDRAM-specific pins so that nobody messes with them.
*/
at32_reserve_pin
(
GPIO_PIN_PE
(
0
));
/* DATA[16] */
at32_reserve_pin
(
GPIO_PIN_PE
(
1
));
/* DATA[17] */
at32_reserve_pin
(
GPIO_PIN_PE
(
2
));
/* DATA[18] */
at32_reserve_pin
(
GPIO_PIN_PE
(
3
));
/* DATA[19] */
at32_reserve_pin
(
GPIO_PIN_PE
(
4
));
/* DATA[20] */
at32_reserve_pin
(
GPIO_PIN_PE
(
5
));
/* DATA[21] */
at32_reserve_pin
(
GPIO_PIN_PE
(
6
));
/* DATA[22] */
at32_reserve_pin
(
GPIO_PIN_PE
(
7
));
/* DATA[23] */
at32_reserve_pin
(
GPIO_PIN_PE
(
8
));
/* DATA[24] */
at32_reserve_pin
(
GPIO_PIN_PE
(
9
));
/* DATA[25] */
at32_reserve_pin
(
GPIO_PIN_PE
(
10
));
/* DATA[26] */
at32_reserve_pin
(
GPIO_PIN_PE
(
11
));
/* DATA[27] */
at32_reserve_pin
(
GPIO_PIN_PE
(
12
));
/* DATA[28] */
at32_reserve_pin
(
GPIO_PIN_PE
(
13
));
/* DATA[29] */
at32_reserve_pin
(
GPIO_PIN_PE
(
14
));
/* DATA[30] */
at32_reserve_pin
(
GPIO_PIN_PE
(
15
));
/* DATA[31] */
at32_reserve_pin
(
GPIO_PIN_PE
(
26
));
/* SDCS */
at32_reserve_pin
(
GPIO_PIOE_BASE
,
ATMEL_EBI_PE_DATA_ALL
);
#ifdef CONFIG_BOARD_ATSTK1006
smc_set_timing
(
&
nand_config
,
&
nand_timing
);
...
...
arch/avr32/boards/atstk1000/atstk1003.c
View file @
52435bfc
...
...
@@ -17,9 +17,9 @@
#include <linux/spi/at73c213.h>
#include <linux/spi/spi.h>
#include <linux/atmel-mci.h>
#include <asm/setup.h>
#include <asm/atmel-mci.h>
#include <mach/at32ap700x.h>
#include <mach/board.h>
...
...
@@ -131,23 +131,7 @@ static int __init atstk1003_init(void)
* ATSTK1000 uses 32-bit SDRAM interface. Reserve the
* SDRAM-specific pins so that nobody messes with them.
*/
at32_reserve_pin
(
GPIO_PIN_PE
(
0
));
/* DATA[16] */
at32_reserve_pin
(
GPIO_PIN_PE
(
1
));
/* DATA[17] */
at32_reserve_pin
(
GPIO_PIN_PE
(
2
));
/* DATA[18] */
at32_reserve_pin
(
GPIO_PIN_PE
(
3
));
/* DATA[19] */
at32_reserve_pin
(
GPIO_PIN_PE
(
4
));
/* DATA[20] */
at32_reserve_pin
(
GPIO_PIN_PE
(
5
));
/* DATA[21] */
at32_reserve_pin
(
GPIO_PIN_PE
(
6
));
/* DATA[22] */
at32_reserve_pin
(
GPIO_PIN_PE
(
7
));
/* DATA[23] */
at32_reserve_pin
(
GPIO_PIN_PE
(
8
));
/* DATA[24] */
at32_reserve_pin
(
GPIO_PIN_PE
(
9
));
/* DATA[25] */
at32_reserve_pin
(
GPIO_PIN_PE
(
10
));
/* DATA[26] */
at32_reserve_pin
(
GPIO_PIN_PE
(
11
));
/* DATA[27] */
at32_reserve_pin
(
GPIO_PIN_PE
(
12
));
/* DATA[28] */
at32_reserve_pin
(
GPIO_PIN_PE
(
13
));
/* DATA[29] */
at32_reserve_pin
(
GPIO_PIN_PE
(
14
));
/* DATA[30] */
at32_reserve_pin
(
GPIO_PIN_PE
(
15
));
/* DATA[31] */
at32_reserve_pin
(
GPIO_PIN_PE
(
26
));
/* SDCS */
at32_reserve_pin
(
GPIO_PIOE_BASE
,
ATMEL_EBI_PE_DATA_ALL
);
#ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
at32_add_device_usart
(
1
);
...
...
arch/avr32/boards/atstk1000/atstk1004.c
View file @
52435bfc
...
...
@@ -17,11 +17,11 @@
#include <linux/spi/at73c213.h>
#include <linux/spi/spi.h>
#include <linux/atmel-mci.h>
#include <video/atmel_lcdc.h>
#include <asm/setup.h>
#include <asm/atmel-mci.h>
#include <mach/at32ap700x.h>
#include <mach/board.h>
...
...
arch/avr32/boards/favr-32/setup.c
View file @
52435bfc
...
...
@@ -17,6 +17,7 @@
#include <linux/linkage.h>
#include <linux/gpio.h>
#include <linux/leds.h>
#include <linux/atmel-mci.h>
#include <linux/atmel-pwm-bl.h>
#include <linux/spi/spi.h>
#include <linux/spi/ads7846.h>
...
...
@@ -79,6 +80,14 @@ static struct spi_board_info __initdata spi1_board_info[] = {
},
};
static
struct
mci_platform_data
__initdata
mci0_data
=
{
.
slot
[
0
]
=
{
.
bus_width
=
4
,
.
detect_pin
=
-
ENODEV
,
.
wp_pin
=
-
ENODEV
,
},
};
static
struct
fb_videomode
__initdata
lb104v03_modes
[]
=
{
{
.
name
=
"640x480 @ 50"
,
...
...
@@ -307,28 +316,10 @@ static int __init favr32_init(void)
* Favr-32 uses 32-bit SDRAM interface. Reserve the SDRAM-specific
* pins so that nobody messes with them.
*/
at32_reserve_pin
(
GPIO_PIN_PE
(
0
));
/* DATA[16] */
at32_reserve_pin
(
GPIO_PIN_PE
(
1
));
/* DATA[17] */
at32_reserve_pin
(
GPIO_PIN_PE
(
2
));
/* DATA[18] */
at32_reserve_pin
(
GPIO_PIN_PE
(
3
));
/* DATA[19] */
at32_reserve_pin
(
GPIO_PIN_PE
(
4
));
/* DATA[20] */
at32_reserve_pin
(
GPIO_PIN_PE
(
5
));
/* DATA[21] */
at32_reserve_pin
(
GPIO_PIN_PE
(
6
));
/* DATA[22] */
at32_reserve_pin
(
GPIO_PIN_PE
(
7
));
/* DATA[23] */
at32_reserve_pin
(
GPIO_PIN_PE
(
8
));
/* DATA[24] */
at32_reserve_pin
(
GPIO_PIN_PE
(
9
));
/* DATA[25] */
at32_reserve_pin
(
GPIO_PIN_PE
(
10
));
/* DATA[26] */
at32_reserve_pin
(
GPIO_PIN_PE
(
11
));
/* DATA[27] */
at32_reserve_pin
(
GPIO_PIN_PE
(
12
));
/* DATA[28] */
at32_reserve_pin
(
GPIO_PIN_PE
(
13
));
/* DATA[29] */
at32_reserve_pin
(
GPIO_PIN_PE
(
14
));
/* DATA[30] */
at32_reserve_pin
(
GPIO_PIN_PE
(
15
));
/* DATA[31] */
at32_reserve_pin
(
GPIO_PIN_PE
(
26
));
/* SDCS */
at32_reserve_pin
(
GPIO_PIOE_BASE
,
ATMEL_EBI_PE_DATA_ALL
);
at32_select_gpio
(
GPIO_PIN_PB
(
3
),
0
);
/* IRQ from ADS7843 */
at32_add_system_devices
();
at32_add_device_usart
(
0
);
set_hw_addr
(
at32_add_device_eth
(
0
,
&
eth_data
[
0
]));
...
...
@@ -339,7 +330,7 @@ static int __init favr32_init(void)
at32_add_device_pwm
(
1
<<
atmel_pwm_bl_pdata
.
pwm_channel
);
at32_add_device_spi
(
1
,
spi1_board_info
,
ARRAY_SIZE
(
spi1_board_info
));
at32_add_device_mci
(
0
,
NULL
);
at32_add_device_mci
(
0
,
&
mci0_data
);
at32_add_device_usba
(
0
,
NULL
);
at32_add_device_lcdc
(
0
,
&
favr32_lcdc_data
,
fbmem_start
,
fbmem_size
,
0
);
...
...
arch/avr32/boards/hammerhead/Kconfig
0 → 100644
View file @
52435bfc
# Hammerhead customization
if BOARD_HAMMERHEAD
config BOARD_HAMMERHEAD_USB
bool "Philips ISP116x-hcd USB support"
help
This enables USB support for Hammerheads internal ISP116x
controller from Philips.
Choose 'Y' here if you want to have your board USB driven.
config BOARD_HAMMERHEAD_LCD
bool "Atmel AT91/AT32 LCD support"
help
This enables LCD support for the Hammerhead board. You may
also add support for framebuffer devices (AT91/AT32 LCD Controller)
and framebuffer console support to get the most out of your LCD.
Choose 'Y' here if you have ordered a Corona daugther board and
want to have support for your Hantronix HDA-351T-LV LCD.
config BOARD_HAMMERHEAD_SND
bool "Atmel AC97 Sound support"
help
This enables Sound support for the Hammerhead board. You may
also go trough the ALSA settings to get it working.
Choose 'Y' here if you have ordered a Corona daugther board and
want to make your board funky.
config BOARD_HAMMERHEAD_FPGA
bool "Hammerhead FPGA Support"
default y
help
This adds support for the Cyclone III FPGA from Altera
found on Miromico's Hammerhead board.
Choose 'Y' here if you want to have FPGA support enabled.
You will have to choose the "Hammerhead FPGA Device Support" in
Device Drivers->Misc to be able to use FPGA functionality.
endif # BOARD_ATNGW100
arch/avr32/boards/hammerhead/Makefile
0 → 100644
View file @
52435bfc
obj-y
+=
setup.o flash.o
arch/avr32/boards/hammerhead/flash.c
0 → 100644
View file @
52435bfc
/*
* Hammerhead board-specific flash initialization
*
* Copyright (C) 2008 Miromico AG
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
#include <linux/usb/isp116x.h>
#include <linux/dma-mapping.h>
#include <linux/platform_device.h>
#include <linux/delay.h>
#include <mach/portmux.h>
#include <mach/at32ap700x.h>
#include <mach/smc.h>
#include "../../mach-at32ap/clock.h"
#include "flash.h"
#define HAMMERHEAD_USB_PERIPH_GCLK0 0x40000000
#define HAMMERHEAD_USB_PERIPH_CS2 0x02000000
#define HAMMERHEAD_USB_PERIPH_EXTINT0 0x02000000
#define HAMMERHEAD_FPGA_PERIPH_MOSI 0x00000002
#define HAMMERHEAD_FPGA_PERIPH_SCK 0x00000020
#define HAMMERHEAD_FPGA_PERIPH_EXTINT3 0x10000000
static
struct
smc_timing
flash_timing
__initdata
=
{
.
ncs_read_setup
=
0
,
.
nrd_setup
=
40
,
.
ncs_write_setup
=
0
,
.
nwe_setup
=
10
,
.
ncs_read_pulse
=
80
,
.
nrd_pulse
=
40
,
.
ncs_write_pulse
=
65
,
.
nwe_pulse
=
55
,
.
read_cycle
=
120
,
.
write_cycle
=
120
,
};
static
struct
smc_config
flash_config
__initdata
=
{
.
bus_width
=
2
,
.
nrd_controlled
=
1
,
.
nwe_controlled
=
1
,
.
byte_write
=
1
,
};
static
struct
mtd_partition
flash_parts
[]
=
{
{
.
name
=
"u-boot"
,
.
offset
=
0x00000000
,
.
size
=
0x00020000
,
/* 128 KiB */
.
mask_flags
=
MTD_WRITEABLE
,
},
{
.
name
=
"root"
,
.
offset
=
0x00020000
,
.
size
=
0x007d0000
,
},
{
.
name
=
"env"
,
.
offset
=
0x007f0000
,
.
size
=
0x00010000
,
.
mask_flags
=
MTD_WRITEABLE
,
},
};
static
struct
physmap_flash_data
flash_data
=
{
.
width
=
2
,
.
nr_parts
=
ARRAY_SIZE
(
flash_parts
),
.
parts
=
flash_parts
,
};
static
struct
resource
flash_resource
=
{
.
start
=
0x00000000
,
.
end
=
0x007fffff
,
.
flags
=
IORESOURCE_MEM
,
};
static
struct
platform_device
flash_device
=
{
.
name
=
"physmap-flash"
,
.
id
=
0
,
.
resource
=
&
flash_resource
,
.
num_resources
=
1
,
.
dev
=
{
.
platform_data
=
&
flash_data
,
},
};
#ifdef CONFIG_BOARD_HAMMERHEAD_USB
static
struct
smc_timing
isp1160_timing
__initdata
=
{
.
ncs_read_setup
=
75
,
.
nrd_setup
=
75
,
.
ncs_write_setup
=
75
,
.
nwe_setup
=
75
,
/* We use conservative timing settings, as the minimal settings aren't
stable. There may be room for tweaking. */
.
ncs_read_pulse
=
75
,
/* min. 33ns */
.
nrd_pulse
=
75
,
/* min. 33ns */
.
ncs_write_pulse
=
75
,
/* min. 26ns */
.
nwe_pulse
=
75
,
/* min. 26ns */
.
read_cycle
=
225
,
/* min. 143ns */
.
write_cycle
=
225
,
/* min. 136ns */
};
static
struct
smc_config
isp1160_config
__initdata
=
{
.
bus_width
=
2
,
.
nrd_controlled
=
1
,
.
nwe_controlled
=
1
,
.
byte_write
=
0
,
};
/*
* The platform delay function is only used to enforce the strange
* read to write delay. This can not be configured in the SMC. All other
* timings are controlled by the SMC (see timings obove)
* So in isp116x-hcd.c we should comment out USE_PLATFORM_DELAY
*/
void
isp116x_delay
(
struct
device
*
dev
,
int
delay
)
{
if
(
delay
>
150
)
ndelay
(
delay
-
150
);
}
static
struct
isp116x_platform_data
isp1160_data
=
{
.
sel15Kres
=
1
,
/* use internal downstream resistors */
.
oc_enable
=
0
,
/* external overcurrent detection */
.
int_edge_triggered
=
0
,
/* interrupt is level triggered */
.
int_act_high
=
0
,
/* interrupt is active low */
.
delay
=
isp116x_delay
,
/* platform delay function */
};
static
struct
resource
isp1160_resource
[]
=
{
{
.
start
=
0x08000000
,
.
end
=
0x08000001
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
0x08000002
,
.
end
=
0x08000003
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
64
,
.
flags
=
IORESOURCE_IRQ
,
},
};
static
struct
platform_device
isp1160_device
=
{
.
name
=
"isp116x-hcd"
,
.
id
=
0
,
.
resource
=
isp1160_resource
,
.
num_resources
=
3
,
.
dev
=
{
.
platform_data
=
&
isp1160_data
,
},
};
#endif
#ifdef CONFIG_BOARD_HAMMERHEAD_USB
static
int
__init
hammerhead_usbh_init
(
void
)
{
struct
clk
*
gclk
;
struct
clk
*
osc
;
int
ret
;
/* setup smc for usbh */
smc_set_timing
(
&
isp1160_config
,
&
isp1160_timing
);
ret
=
smc_set_configuration
(
2
,
&
isp1160_config
);
if
(
ret
<
0
)
{
printk
(
KERN_ERR
"hammerhead: failed to set ISP1160 USBH timing
\n
"
);
return
ret
;
}
/* setup gclk0 to run from osc1 */
gclk
=
clk_get
(
NULL
,
"gclk0"
);
if
(
IS_ERR
(
gclk
))
goto
err_gclk
;
osc
=
clk_get
(
NULL
,
"osc1"
);
if
(
IS_ERR
(
osc
))
goto
err_osc
;
if
(
clk_set_parent
(
gclk
,
osc
))
{
pr_debug
(
"hammerhead: failed to set osc1 for USBH clock
\n
"
);
goto
err_set_clk
;
}
/* set clock to 6MHz */
clk_set_rate
(
gclk
,
6000000
);
/* and enable */
clk_enable
(
gclk
);
/* select GCLK0 peripheral function */
at32_select_periph
(
GPIO_PIOA_BASE
,
HAMMERHEAD_USB_PERIPH_GCLK0
,
GPIO_PERIPH_A
,
0
);
/* enable CS2 peripheral function */
at32_select_periph
(
GPIO_PIOE_BASE
,
HAMMERHEAD_USB_PERIPH_CS2
,
GPIO_PERIPH_A
,
0
);
/* H_WAKEUP must be driven low */
at32_select_gpio
(
GPIO_PIN_PA
(
8
),
AT32_GPIOF_OUTPUT
);
/* Select EXTINT0 for PB25 */
at32_select_periph
(
GPIO_PIOB_BASE
,
HAMMERHEAD_USB_PERIPH_EXTINT0
,
GPIO_PERIPH_A
,
0
);
/* register usbh device driver */
platform_device_register
(
&
isp1160_device
);
err_set_clk:
clk_put
(
osc
);
err_osc:
clk_put
(
gclk
);
err_gclk:
return
ret
;
}
#endif
#ifdef CONFIG_BOARD_HAMMERHEAD_FPGA
static
struct
smc_timing
fpga_timing
__initdata
=
{
.
ncs_read_setup
=
16
,
.
nrd_setup
=
32
,
.
ncs_read_pulse
=
48
,
.
nrd_pulse
=
32
,
.
read_cycle
=
64
,
.
ncs_write_setup
=
16
,
.
nwe_setup
=
16
,
.
ncs_write_pulse
=
32
,
.
nwe_pulse
=
32
,
.
write_cycle
=
64
,
};
static
struct
smc_config
fpga_config
__initdata
=
{
.
bus_width
=
4
,
.
nrd_controlled
=
1
,
.
nwe_controlled
=
1
,
.
byte_write
=
0
,
};
static
struct
resource
hh_fpga0_resource
[]
=
{
{
.
start
=
0xffe00400
,
.
end
=
0xffe00400
+
0x3ff
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
4
,
.
end
=
4
,
.
flags
=
IORESOURCE_IRQ
,
},
{
.
start
=
0x0c000000
,
.
end
=
0x0c000100
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
67
,
.
end
=
67
,
.
flags
=
IORESOURCE_IRQ
,
},
};
static
u64
hh_fpga0_dma_mask
=
DMA_32BIT_MASK
;
static
struct
platform_device
hh_fpga0_device
=
{
.
name
=
"hh_fpga"
,
.
id
=
0
,
.
dev
=
{
.
dma_mask
=
&
hh_fpga0_dma_mask
,
.
coherent_dma_mask
=
DMA_32BIT_MASK
,
},
.
resource
=
hh_fpga0_resource
,
.
num_resources
=
ARRAY_SIZE
(
hh_fpga0_resource
),
};
static
struct
clk
hh_fpga0_spi_clk
=
{
.
name
=
"spi_clk"
,
.
dev
=
&
hh_fpga0_device
.
dev
,
.
mode
=
pba_clk_mode
,
.
get_rate
=
pba_clk_get_rate
,
.
index
=
1
,
};
struct
platform_device
*
__init
at32_add_device_hh_fpga
(
void
)
{
/* Select peripheral functionallity for SPI SCK and MOSI */
at32_select_periph
(
GPIO_PIOB_BASE
,
HAMMERHEAD_FPGA_PERIPH_SCK
,
GPIO_PERIPH_B
,
0
);
at32_select_periph
(
GPIO_PIOB_BASE
,
HAMMERHEAD_FPGA_PERIPH_MOSI
,
GPIO_PERIPH_B
,
0
);
/* reserve all other needed gpio
* We have on board pull ups, so there is no need
* to enable gpio pull ups */
/* INIT_DONE (input) */
at32_select_gpio
(
GPIO_PIN_PB
(
0
),
0
);
/* nSTATUS (input) */
at32_select_gpio
(
GPIO_PIN_PB
(
2
),
0
);
/* nCONFIG (output, low) */
at32_select_gpio
(
GPIO_PIN_PB
(
3
),
AT32_GPIOF_OUTPUT
);
/* CONF_DONE (input) */
at32_select_gpio
(
GPIO_PIN_PB
(
4
),
0
);
/* Select EXTINT3 for PB28 (Interrupt from FPGA) */
at32_select_periph
(
GPIO_PIOB_BASE
,
HAMMERHEAD_FPGA_PERIPH_EXTINT3
,
GPIO_PERIPH_A
,
0
);
/* Get our parent clock */
hh_fpga0_spi_clk
.
parent
=
clk_get
(
NULL
,
"pba"
);
clk_put
(
hh_fpga0_spi_clk
.
parent
);
/* Register clock in at32 clock tree */
at32_clk_register
(
&
hh_fpga0_spi_clk
);
platform_device_register
(
&
hh_fpga0_device
);
return
&
hh_fpga0_device
;
}
#endif
/* This needs to be called after the SMC has been initialized */
static
int
__init
hammerhead_flash_init
(
void
)
{
int
ret
;
smc_set_timing
(
&
flash_config
,
&
flash_timing
);
ret
=
smc_set_configuration
(
0
,
&
flash_config
);
if
(
ret
<
0
)
{
printk
(
KERN_ERR
"hammerhead: failed to set NOR flash timing
\n
"
);
return
ret
;
}
platform_device_register
(
&
flash_device
);
#ifdef CONFIG_BOARD_HAMMERHEAD_USB
hammerhead_usbh_init
();
#endif
#ifdef CONFIG_BOARD_HAMMERHEAD_FPGA
/* Setup SMC for FPGA interface */
smc_set_timing
(
&
fpga_config
,
&
fpga_timing
);
ret
=
smc_set_configuration
(
3
,
&
fpga_config
);
#endif
if
(
ret
<
0
)
{
printk
(
KERN_ERR
"hammerhead: failed to set FPGA timing
\n
"
);
return
ret
;
}
return
0
;
}
device_initcall
(
hammerhead_flash_init
);
arch/avr32/boards/hammerhead/flash.h
0 → 100644
View file @
52435bfc
#ifndef __BOARDS_HAMMERHEAD_FLASH_H
#define __BOARDS_HAMMERHEAD_FLASH_H
struct
platform_device
*
at32_add_device_hh_fpga
(
void
);
#endif
/* __BOARDS_HAMMERHEAD_FLASH_H */
arch/avr32/boards/hammerhead/setup.c
0 → 100644
View file @
52435bfc
/*
* Board-specific setup code for the Miromico Hammerhead board
*
* Copyright (C) 2008 Miromico AG
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/atmel-mci.h>
#include <linux/clk.h>
#include <linux/fb.h>
#include <linux/etherdevice.h>
#include <linux/i2c.h>
#include <linux/i2c-gpio.h>
#include <linux/init.h>
#include <linux/linkage.h>
#include <linux/platform_device.h>
#include <linux/types.h>
#include <linux/spi/spi.h>
#include <video/atmel_lcdc.h>
#include <linux/io.h>
#include <asm/setup.h>
#include <mach/at32ap700x.h>
#include <mach/board.h>
#include <mach/init.h>
#include <mach/portmux.h>
#include "../../mach-at32ap/clock.h"
#include "flash.h"
/* Oscillator frequencies. These are board-specific */
unsigned
long
at32_board_osc_rates
[
3
]
=
{
[
0
]
=
32768
,
/* 32.768 kHz on RTC osc */
[
1
]
=
25000000
,
/* 25MHz on osc0 */
[
2
]
=
12000000
,
/* 12 MHz on osc1 */
};
/* Initialized by bootloader-specific startup code. */
struct
tag
*
bootloader_tags
__initdata
;
#ifdef CONFIG_BOARD_HAMMERHEAD_LCD
static
struct
fb_videomode
__initdata
hda350tlv_modes
[]
=
{
{
.
name
=
"320x240 @ 75"
,
.
refresh
=
75
,
.
xres
=
320
,
.
yres
=
240
,
.
pixclock
=
KHZ2PICOS
(
6891
),
.
left_margin
=
48
,
.
right_margin
=
18
,
.
upper_margin
=
18
,
.
lower_margin
=
4
,
.
hsync_len
=
20
,
.
vsync_len
=
2
,
.
sync
=
0
,
.
vmode
=
FB_VMODE_NONINTERLACED
,
},
};
static
struct
fb_monspecs
__initdata
hammerhead_hda350t_monspecs
=
{
.
manufacturer
=
"HAN"
,
.
monitor
=
"HDA350T-LV"
,
.
modedb
=
hda350tlv_modes
,
.
modedb_len
=
ARRAY_SIZE
(
hda350tlv_modes
),
.
hfmin
=
14900
,
.
hfmax
=
22350
,
.
vfmin
=
60
,
.
vfmax
=
90
,
.
dclkmax
=
10000000
,
};
struct
atmel_lcdfb_info
__initdata
hammerhead_lcdc_data
=
{
.
default_bpp
=
24
,
.
default_dmacon
=
ATMEL_LCDC_DMAEN
|
ATMEL_LCDC_DMA2DEN
,
.
default_lcdcon2
=
(
ATMEL_LCDC_DISTYPE_TFT
|
ATMEL_LCDC_INVCLK
|
ATMEL_LCDC_CLKMOD_ALWAYSACTIVE
|
ATMEL_LCDC_MEMOR_BIG
),
.
default_monspecs
=
&
hammerhead_hda350t_monspecs
,
.
guard_time
=
2
,
};
#endif
static
struct
mci_platform_data
__initdata
mci0_data
=
{
.
slot
[
0
]
=
{
.
bus_width
=
4
,
.
detect_pin
=
-
ENODEV
,
.
wp_pin
=
-
ENODEV
,
},
};
struct
eth_addr
{
u8
addr
[
6
];
};
static
struct
eth_addr
__initdata
hw_addr
[
1
];
static
struct
eth_platform_data
__initdata
eth_data
[
1
];
/*
* The next two functions should go away as the boot loader is
* supposed to initialize the macb address registers with a valid
* ethernet address. But we need to keep it around for a while until
* we can be reasonably sure the boot loader does this.
*
* The phy_id is ignored as the driver will probe for it.
*/
static
int
__init
parse_tag_ethernet
(
struct
tag
*
tag
)
{
int
i
=
tag
->
u
.
ethernet
.
mac_index
;
if
(
i
<
ARRAY_SIZE
(
hw_addr
))
memcpy
(
hw_addr
[
i
].
addr
,
tag
->
u
.
ethernet
.
hw_address
,
sizeof
(
hw_addr
[
i
].
addr
));
return
0
;
}
__tagtable
(
ATAG_ETHERNET
,
parse_tag_ethernet
);
static
void
__init
set_hw_addr
(
struct
platform_device
*
pdev
)
{
struct
resource
*
res
=
platform_get_resource
(
pdev
,
IORESOURCE_MEM
,
0
);
const
u8
*
addr
;
void
__iomem
*
regs
;
struct
clk
*
pclk
;
if
(
!
res
)
return
;
if
(
pdev
->
id
>=
ARRAY_SIZE
(
hw_addr
))
return
;
addr
=
hw_addr
[
pdev
->
id
].
addr
;
if
(
!
is_valid_ether_addr
(
addr
))
return
;
/*
* Since this is board-specific code, we'll cheat and use the
* physical address directly as we happen to know that it's
* the same as the virtual address.
*/
regs
=
(
void
__iomem
__force
*
)
res
->
start
;
pclk
=
clk_get
(
&
pdev
->
dev
,
"pclk"
);
if
(
!
pclk
)
return
;
clk_enable
(
pclk
);
__raw_writel
((
addr
[
3
]
<<
24
)
|
(
addr
[
2
]
<<
16
)
|
(
addr
[
1
]
<<
8
)
|
addr
[
0
],
regs
+
0x98
);
__raw_writel
((
addr
[
5
]
<<
8
)
|
addr
[
4
],
regs
+
0x9c
);
clk_disable
(
pclk
);
clk_put
(
pclk
);
}
void
__init
setup_board
(
void
)
{
at32_map_usart
(
1
,
0
);
/* USART 1: /dev/ttyS0, DB9 */
at32_setup_serial_console
(
0
);
}
static
struct
i2c_gpio_platform_data
i2c_gpio_data
=
{
.
sda_pin
=
GPIO_PIN_PA
(
6
),
.
scl_pin
=
GPIO_PIN_PA
(
7
),
.
sda_is_open_drain
=
1
,
.
scl_is_open_drain
=
1
,
.
udelay
=
2
,
/* close to 100 kHz */
};
static
struct
platform_device
i2c_gpio_device
=
{
.
name
=
"i2c-gpio"
,
.
id
=
0
,
.
dev
=
{
.
platform_data
=
&
i2c_gpio_data
,
},
};
static
struct
i2c_board_info
__initdata
i2c_info
[]
=
{};
#ifdef CONFIG_BOARD_HAMMERHEAD_SND
static
struct
ac97c_platform_data
ac97c_data
=
{
.
reset_pin
=
GPIO_PIN_PA
(
16
),
};
#endif
static
int
__init
hammerhead_init
(
void
)
{
/*
* Hammerhead uses 32-bit SDRAM interface. Reserve the
* SDRAM-specific pins so that nobody messes with them.
*/
at32_reserve_pin
(
GPIO_PIOE_BASE
,
ATMEL_EBI_PE_DATA_ALL
);
at32_add_device_usart
(
0
);
/* Reserve PB29 (GCLK3). This pin is used as clock source
* for ETH PHY (25MHz). GCLK3 setup is done by U-Boot.
*/
at32_reserve_pin
(
GPIO_PIOB_BASE
,
(
1
<<
29
));
/*
* Hammerhead uses only one ethernet port, so we don't set
* address of second port
*/
set_hw_addr
(
at32_add_device_eth
(
0
,
&
eth_data
[
0
]));
#ifdef CONFIG_BOARD_HAMMERHEAD_FPGA
at32_add_device_hh_fpga
();
#endif
at32_add_device_mci
(
0
,
&
mci0_data
);
#ifdef CONFIG_BOARD_HAMMERHEAD_USB
at32_add_device_usba
(
0
,
NULL
);
#endif
#ifdef CONFIG_BOARD_HAMMERHEAD_LCD
at32_add_device_lcdc
(
0
,
&
hammerhead_lcdc_data
,
fbmem_start
,
fbmem_size
,
ATMEL_LCDC_PRI_24BIT
);
#endif
at32_select_gpio
(
i2c_gpio_data
.
sda_pin
,
AT32_GPIOF_MULTIDRV
|
AT32_GPIOF_OUTPUT
|
AT32_GPIOF_HIGH
);
at32_select_gpio
(
i2c_gpio_data
.
scl_pin
,
AT32_GPIOF_MULTIDRV
|
AT32_GPIOF_OUTPUT
|
AT32_GPIOF_HIGH
);
platform_device_register
(
&
i2c_gpio_device
);
i2c_register_board_info
(
0
,
i2c_info
,
ARRAY_SIZE
(
i2c_info
));
#ifdef CONFIG_BOARD_HAMMERHEAD_SND
at32_add_device_ac97c
(
0
,
&
ac97c_data
);
#endif
/* Select the Touchscreen interrupt pin mode */
at32_select_periph
(
GPIO_PIOB_BASE
,
0x08000000
,
GPIO_PERIPH_A
,
0
);
return
0
;
}
postcore_initcall
(
hammerhead_init
);
arch/avr32/boards/mimc200/setup.c
View file @
52435bfc
...
...
@@ -24,7 +24,7 @@ extern struct atmel_lcdfb_info mimc200_lcdc_data;
#include <video/atmel_lcdc.h>
#include <linux/fb.h>
#include <
asm
/atmel-mci.h>
#include <
linux
/atmel-mci.h>
#include <linux/io.h>
#include <asm/setup.h>
...
...
@@ -207,8 +207,6 @@ static int __init mimc200_init(void)
* reserve any pins for it.
*/
at32_add_system_devices
();
at32_add_device_usart
(
0
);
at32_add_device_usart
(
1
);
at32_add_device_usart
(
2
);
...
...
arch/avr32/configs/atngw100_defconfig
View file @
52435bfc
...
...
@@ -892,7 +892,7 @@ CONFIG_DMA_ENGINE=y
# DMA Clients
#
# CONFIG_NET_DMA is not set
CONFIG_DMATEST=m
# CONFIG_DMATEST is not set
# CONFIG_UIO is not set
#
...
...
arch/avr32/configs/atstk1002_defconfig
View file @
52435bfc
...
...
@@ -964,7 +964,7 @@ CONFIG_DMA_ENGINE=y
# DMA Clients
#
# CONFIG_NET_DMA is not set
CONFIG_DMATEST=m
# CONFIG_DMATEST is not set
# CONFIG_UIO is not set
#
...
...
arch/avr32/configs/atstk1003_defconfig
View file @
52435bfc
...
...
@@ -882,7 +882,7 @@ CONFIG_DMA_ENGINE=y
# DMA Clients
#
# CONFIG_NET_DMA is not set
CONFIG_DMATEST=m
# CONFIG_DMATEST is not set
# CONFIG_UIO is not set
#
...
...
arch/avr32/configs/atstk1006_defconfig
View file @
52435bfc
...
...
@@ -1014,7 +1014,7 @@ CONFIG_DMA_ENGINE=y
# DMA Clients
#
# CONFIG_NET_DMA is not set
CONFIG_DMATEST=m
# CONFIG_DMATEST is not set
# CONFIG_UIO is not set
# CONFIG_STAGING is not set
CONFIG_STAGING_EXCLUDE_BUILD=y
...
...
arch/avr32/configs/hammerhead_defconfig
0 → 100644
View file @
52435bfc
This diff is collapsed.
Click to expand it.
arch/avr32/include/asm/kdebug.h
View file @
52435bfc
...
...
@@ -6,6 +6,7 @@ enum die_val {
DIE_BREAKPOINT
,
DIE_SSTEP
,
DIE_NMI
,
DIE_OOPS
,
};
#endif
/* __ASM_AVR32_KDEBUG_H */
arch/avr32/kernel/process.c
View file @
52435bfc
...
...
@@ -18,6 +18,7 @@
#include <asm/sysreg.h>
#include <asm/ocd.h>
#include <asm/syscalls.h>
#include <mach/pm.h>
...
...
arch/avr32/kernel/signal.c
View file @
52435bfc
...
...
@@ -19,6 +19,7 @@
#include <asm/uaccess.h>
#include <asm/ucontext.h>
#include <asm/syscalls.h>
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
...
...
arch/avr32/kernel/sys_avr32.c
View file @
52435bfc
...
...
@@ -13,6 +13,7 @@
#include <asm/mman.h>
#include <asm/uaccess.h>
#include <asm/syscalls.h>
asmlinkage
long
sys_mmap2
(
unsigned
long
addr
,
unsigned
long
len
,
unsigned
long
prot
,
unsigned
long
flags
,
...
...
arch/avr32/mach-at32ap/at32ap700x.c
View file @
52435bfc
...
...
@@ -15,8 +15,8 @@
#include <linux/gpio.h>
#include <linux/spi/spi.h>
#include <linux/usb/atmel_usba_udc.h>
#include <linux/atmel-mci.h>
#include <asm/atmel-mci.h>
#include <asm/io.h>
#include <asm/irq.h>
...
...
@@ -421,7 +421,7 @@ static unsigned long hsb_clk_get_rate(struct clk *clk)
return
bus_clk_get_rate
(
clk
,
shift
);
}
static
void
pba_clk_mode
(
struct
clk
*
clk
,
int
enabled
)
void
pba_clk_mode
(
struct
clk
*
clk
,
int
enabled
)
{
unsigned
long
flags
;
u32
mask
;
...
...
@@ -436,7 +436,7 @@ static void pba_clk_mode(struct clk *clk, int enabled)
spin_unlock_irqrestore
(
&
pm_lock
,
flags
);
}
static
unsigned
long
pba_clk_get_rate
(
struct
clk
*
clk
)
unsigned
long
pba_clk_get_rate
(
struct
clk
*
clk
)
{
unsigned
long
cksel
,
shift
=
0
;
...
...
arch/avr32/mach-at32ap/clock.h
View file @
52435bfc
...
...
@@ -30,3 +30,6 @@ struct clk {
u16
users
;
/* Enabled if non-zero */
u16
index
;
/* Sibling index */
};
unsigned
long
pba_clk_get_rate
(
struct
clk
*
clk
);
void
pba_clk_mode
(
struct
clk
*
clk
,
int
enabled
);
arch/avr32/mach-at32ap/include/mach/at32ap700x.h
View file @
52435bfc
...
...
@@ -211,4 +211,7 @@
#define ATMEL_LCDC_ALT_15BIT (ATMEL_LCDC_CONTROL | ATMEL_LCDC_ALT_15B_DATA)
/* Bitmask for all EBI data (D16..D31) pins on port E */
#define ATMEL_EBI_PE_DATA_ALL (0x0000FFFF)
#endif
/* __ASM_ARCH_AT32AP700X_H__ */
arch/avr32/mach-at32ap/include/mach/portmux.h
View file @
52435bfc
...
...
@@ -25,6 +25,6 @@ void at32_select_periph(unsigned int port, unsigned int pin,
unsigned
int
periph
,
unsigned
long
flags
);
void
at32_select_gpio
(
unsigned
int
pin
,
unsigned
long
flags
);
void
at32_deselect_pin
(
unsigned
int
pin
);
void
at32_reserve_pin
(
unsigned
int
p
in
);
void
at32_reserve_pin
(
unsigned
int
p
ort
,
u32
pin_mask
);
#endif
/* __ASM_ARCH_PORTMUX_H__ */
arch/avr32/mach-at32ap/pio.c
View file @
52435bfc
...
...
@@ -167,22 +167,29 @@ void at32_deselect_pin(unsigned int pin)
}
/* Reserve a pin, preventing anyone else from changing its configuration. */
void
__init
at32_reserve_pin
(
unsigned
int
p
in
)
void
__init
at32_reserve_pin
(
unsigned
int
p
ort
,
u32
pin_mask
)
{
struct
pio_device
*
pio
;
unsigned
int
pin_index
=
pin
&
0x1f
;
pio
=
gpio_to_pio
(
pin
);
/* assign and verify pio */
pio
=
gpio_to_pio
(
port
);
if
(
unlikely
(
!
pio
))
{
printk
(
"pio: invalid pin %u
\n
"
,
pin
);
printk
(
KERN_WARNING
"pio: invalid port %u
\n
"
,
port
);
goto
fail
;
}
if
(
unlikely
(
test_and_set_bit
(
pin_index
,
&
pio
->
pinmux_mask
)))
{
printk
(
"%s: pin %u is busy
\n
"
,
pio
->
name
,
pin_index
);
/* Test if any of the requested pins is already muxed */
spin_lock
(
&
pio_lock
);
if
(
unlikely
(
pio
->
pinmux_mask
&
pin_mask
))
{
printk
(
KERN_WARNING
"%s: pin(s) busy (req. 0x%x, busy 0x%x)
\n
"
,
pio
->
name
,
pin_mask
,
pio
->
pinmux_mask
&
pin_mask
);
spin_unlock
(
&
pio_lock
);
goto
fail
;
}
/* Reserve pins */
pio
->
pinmux_mask
|=
pin_mask
;
spin_unlock
(
&
pio_lock
);
return
;
fail:
...
...
arch/avr32/mm/cache.c
View file @
52435bfc
...
...
@@ -13,6 +13,7 @@
#include <asm/cachectl.h>
#include <asm/processor.h>
#include <asm/uaccess.h>
#include <asm/syscalls.h>
/*
* If you attempt to flush anything more than this, you need superuser
...
...
arch/avr32/mm/init.c
View file @
52435bfc
...
...
@@ -97,7 +97,6 @@ void __init paging_init(void)
mem_map
=
NODE_DATA
(
0
)
->
node_mem_map
;
memset
(
zero_page
,
0
,
PAGE_SIZE
);
empty_zero_page
=
virt_to_page
(
zero_page
);
flush_dcache_page
(
empty_zero_page
);
}
...
...
drivers/mmc/host/atmel-mci.c
View file @
52435bfc
...
...
@@ -25,8 +25,8 @@
#include <linux/stat.h>
#include <linux/mmc/host.h>
#include <linux/atmel-mci.h>
#include <asm/atmel-mci.h>
#include <asm/io.h>
#include <asm/unaligned.h>
...
...
include/asm-avr32/syscalls.h
0 → 100644
View file @
52435bfc
/*
* syscalls.h - Linux syscall interfaces (arch-specific)
*
* Copyright (c) 2008 Jaswinder Singh
*
* This file is released under the GPLv2.
* See the file COPYING for more details.
*/
#ifndef _ASM_AVR32_SYSCALLS_H
#define _ASM_AVR32_SYSCALLS_H
#include <linux/compiler.h>
#include <linux/linkage.h>
#include <linux/types.h>
#include <linux/signal.h>
/* kernel/process.c */
asmlinkage
int
sys_fork
(
struct
pt_regs
*
);
asmlinkage
int
sys_clone
(
unsigned
long
,
unsigned
long
,
unsigned
long
,
unsigned
long
,
struct
pt_regs
*
);
asmlinkage
int
sys_vfork
(
struct
pt_regs
*
);
asmlinkage
int
sys_execve
(
char
__user
*
,
char
__user
*
__user
*
,
char
__user
*
__user
*
,
struct
pt_regs
*
);
/* kernel/signal.c */
asmlinkage
int
sys_sigaltstack
(
const
stack_t
__user
*
,
stack_t
__user
*
,
struct
pt_regs
*
);
asmlinkage
int
sys_rt_sigreturn
(
struct
pt_regs
*
);
/* kernel/sys_avr32.c */
asmlinkage
long
sys_mmap2
(
unsigned
long
,
unsigned
long
,
unsigned
long
,
unsigned
long
,
unsigned
long
,
off_t
);
/* mm/cache.c */
asmlinkage
int
sys_cacheflush
(
int
,
void
__user
*
,
size_t
);
#endif
/* _ASM_AVR32_SYSCALLS_H */
arch/avr32/include/asm
/atmel-mci.h
→
include/linux
/atmel-mci.h
View file @
52435bfc
#ifndef __
ASM_AVR32
_ATMEL_MCI_H
#define __
ASM_AVR32
_ATMEL_MCI_H
#ifndef __
LINUX
_ATMEL_MCI_H
#define __
LINUX
_ATMEL_MCI_H
#define ATMEL_MCI_MAX_NR_SLOTS 2
...
...
@@ -36,4 +36,4 @@ struct mci_platform_data {
struct
mci_slot_pdata
slot
[
ATMEL_MCI_MAX_NR_SLOTS
];
};
#endif
/* __
ASM_AVR32
_ATMEL_MCI_H */
#endif
/* __
LINUX
_ATMEL_MCI_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment