Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
b6caab3a
Commit
b6caab3a
authored
Jul 28, 2005
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Synced board init with mainline
Synced board init with mainline
parent
13a9f510
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
66 additions
and
50 deletions
+66
-50
arch/arm/mach-omap1/board-generic.c
arch/arm/mach-omap1/board-generic.c
+8
-6
arch/arm/mach-omap1/board-h2.c
arch/arm/mach-omap1/board-h2.c
+8
-6
arch/arm/mach-omap1/board-h3.c
arch/arm/mach-omap1/board-h3.c
+8
-6
arch/arm/mach-omap1/board-innovator.c
arch/arm/mach-omap1/board-innovator.c
+8
-6
arch/arm/mach-omap1/board-netstar.c
arch/arm/mach-omap1/board-netstar.c
+9
-7
arch/arm/mach-omap1/board-osk.c
arch/arm/mach-omap1/board-osk.c
+8
-6
arch/arm/mach-omap1/board-perseus2.c
arch/arm/mach-omap1/board-perseus2.c
+8
-6
arch/arm/mach-omap1/board-voiceblue.c
arch/arm/mach-omap1/board-voiceblue.c
+9
-7
No files found.
arch/arm/mach-omap1/board-generic.c
View file @
b6caab3a
...
@@ -101,11 +101,13 @@ static void __init omap_generic_map_io(void)
...
@@ -101,11 +101,13 @@ static void __init omap_generic_map_io(void)
}
}
MACHINE_START
(
OMAP_GENERIC
,
"Generic OMAP1510/1610/1710"
)
MACHINE_START
(
OMAP_GENERIC
,
"Generic OMAP1510/1610/1710"
)
MAINTAINER
(
"Tony Lindgren <tony@atomide.com>"
)
/* Maintainer: Tony Lindgren <tony@atomide.com> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
omap_generic_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
omap_generic_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
omap_generic_init
)
.
map_io
=
omap_generic_map_io
,
.
init_irq
=
omap_generic_init_irq
,
.
init_machine
=
omap_generic_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-h2.c
View file @
b6caab3a
...
@@ -189,11 +189,13 @@ static void __init h2_map_io(void)
...
@@ -189,11 +189,13 @@ static void __init h2_map_io(void)
}
}
MACHINE_START
(
OMAP_H2
,
"TI-H2"
)
MACHINE_START
(
OMAP_H2
,
"TI-H2"
)
MAINTAINER
(
"Imre Deak <imre.deak@nokia.com>"
)
/* Maintainer: Imre Deak <imre.deak@nokia.com> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
h2_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
h2_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
h2_init
)
.
map_io
=
h2_map_io
,
.
init_irq
=
h2_init_irq
,
.
init_machine
=
h2_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-h3.c
View file @
b6caab3a
...
@@ -205,11 +205,13 @@ static void __init h3_map_io(void)
...
@@ -205,11 +205,13 @@ static void __init h3_map_io(void)
}
}
MACHINE_START
(
OMAP_H3
,
"TI OMAP1710 H3 board"
)
MACHINE_START
(
OMAP_H3
,
"TI OMAP1710 H3 board"
)
MAINTAINER
(
"Texas Instruments, Inc."
)
/* Maintainer: Texas Instruments, Inc. */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
h3_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
h3_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
h3_init
)
.
map_io
=
h3_map_io
,
.
init_irq
=
h3_init_irq
,
.
init_machine
=
h3_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-innovator.c
View file @
b6caab3a
...
@@ -280,11 +280,13 @@ static void __init innovator_map_io(void)
...
@@ -280,11 +280,13 @@ static void __init innovator_map_io(void)
}
}
MACHINE_START
(
OMAP_INNOVATOR
,
"TI-Innovator"
)
MACHINE_START
(
OMAP_INNOVATOR
,
"TI-Innovator"
)
MAINTAINER
(
"MontaVista Software, Inc."
)
/* Maintainer: MontaVista Software, Inc. */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
innovator_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
innovator_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
innovator_init
)
.
map_io
=
innovator_map_io
,
.
init_irq
=
innovator_init_irq
,
.
init_machine
=
innovator_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-netstar.c
View file @
b6caab3a
...
@@ -139,11 +139,13 @@ static int __init netstar_late_init(void)
...
@@ -139,11 +139,13 @@ static int __init netstar_late_init(void)
postcore_initcall
(
netstar_late_init
);
postcore_initcall
(
netstar_late_init
);
MACHINE_START
(
NETSTAR
,
"NetStar OMAP5910"
)
MACHINE_START
(
NETSTAR
,
"NetStar OMAP5910"
)
MAINTAINER
(
"Ladislav Michl <michl@2n.cz>"
)
/* Maintainer: Ladislav Michl <michl@2n.cz> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
netstar_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
netstar_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
netstar_init
)
.
map_io
=
netstar_map_io
,
.
timer
=
&
omap_timer
,
.
init_irq
=
netstar_init_irq
,
.
init_machine
=
netstar_init
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-osk.c
View file @
b6caab3a
...
@@ -258,11 +258,13 @@ static void __init osk_map_io(void)
...
@@ -258,11 +258,13 @@ static void __init osk_map_io(void)
}
}
MACHINE_START
(
OMAP_OSK
,
"TI-OSK"
)
MACHINE_START
(
OMAP_OSK
,
"TI-OSK"
)
MAINTAINER
(
"Dirk Behme <dirk.behme@de.bosch.com>"
)
/* Maintainer: Dirk Behme <dirk.behme@de.bosch.com> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
osk_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
osk_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
osk_init
)
.
map_io
=
osk_map_io
,
.
init_irq
=
osk_init_irq
,
.
init_machine
=
osk_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-perseus2.c
View file @
b6caab3a
...
@@ -178,11 +178,13 @@ static void __init omap_perseus2_map_io(void)
...
@@ -178,11 +178,13 @@ static void __init omap_perseus2_map_io(void)
}
}
MACHINE_START
(
OMAP_PERSEUS2
,
"OMAP730 Perseus2"
)
MACHINE_START
(
OMAP_PERSEUS2
,
"OMAP730 Perseus2"
)
MAINTAINER
(
"Kevin Hilman <kjh@hilman.org>"
)
/* Maintainer: Kevin Hilman <kjh@hilman.org> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
omap_perseus2_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
omap_perseus2_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
omap_perseus2_init
)
.
map_io
=
omap_perseus2_map_io
,
.
init_irq
=
omap_perseus2_init_irq
,
.
init_machine
=
omap_perseus2_init
,
.
timer
=
&
omap_timer
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
arch/arm/mach-omap1/board-voiceblue.c
View file @
b6caab3a
...
@@ -289,11 +289,13 @@ EXPORT_SYMBOL(voiceblue_wdt_disable);
...
@@ -289,11 +289,13 @@ EXPORT_SYMBOL(voiceblue_wdt_disable);
EXPORT_SYMBOL
(
voiceblue_wdt_ping
);
EXPORT_SYMBOL
(
voiceblue_wdt_ping
);
MACHINE_START
(
VOICEBLUE
,
"VoiceBlue OMAP5910"
)
MACHINE_START
(
VOICEBLUE
,
"VoiceBlue OMAP5910"
)
MAINTAINER
(
"Ladislav Michl <michl@2n.cz>"
)
/* Maintainer: Ladislav Michl <michl@2n.cz> */
BOOT_MEM
(
0x10000000
,
0xfff00000
,
0xfef00000
)
.
phys_ram
=
0x10000000
,
BOOT_PARAMS
(
0x10000100
)
.
phys_io
=
0xfff00000
,
MAPIO
(
voiceblue_map_io
)
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
INITIRQ
(
voiceblue_init_irq
)
.
boot_params
=
0x10000100
,
INIT_MACHINE
(
voiceblue_init
)
.
map_io
=
voiceblue_map_io
,
.
timer
=
&
omap_timer
,
.
init_irq
=
voiceblue_init_irq
,
.
init_machine
=
voiceblue_init
,
.
timer
=
&
omap_timer
,
MACHINE_END
MACHINE_END
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