Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
71ee7dad
Commit
71ee7dad
authored
May 23, 2010
by
Russell King
Browse files
ARM: OMAP: Convert to use ->reserve method to reserve boot time memory
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
a1af0fbb
Changes
40
Hide whitespace changes
Inline
Side-by-side
arch/arm/mach-omap1/board-ams-delta.c
View file @
71ee7dad
...
...
@@ -301,6 +301,7 @@ MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
ams_delta_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
ams_delta_init_irq
,
.
init_machine
=
ams_delta_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-fsample.c
View file @
71ee7dad
...
...
@@ -378,6 +378,7 @@ MACHINE_START(OMAP_FSAMPLE, "OMAP730 F-Sample")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_fsample_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_fsample_init_irq
,
.
init_machine
=
omap_fsample_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-generic.c
View file @
71ee7dad
...
...
@@ -98,6 +98,7 @@ MACHINE_START(OMAP_GENERIC, "Generic OMAP1510/1610/1710")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_generic_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_generic_init_irq
,
.
init_machine
=
omap_generic_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-h2.c
View file @
71ee7dad
...
...
@@ -467,6 +467,7 @@ MACHINE_START(OMAP_H2, "TI-H2")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
h2_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
h2_init_irq
,
.
init_machine
=
h2_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-h3.c
View file @
71ee7dad
...
...
@@ -437,6 +437,7 @@ MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
h3_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
h3_init_irq
,
.
init_machine
=
h3_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-htcherald.c
View file @
71ee7dad
...
...
@@ -304,6 +304,7 @@ MACHINE_START(HERALD, "HTC Herald")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
htcherald_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
htcherald_init_irq
,
.
init_machine
=
htcherald_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-innovator.c
View file @
71ee7dad
...
...
@@ -463,6 +463,7 @@ MACHINE_START(OMAP_INNOVATOR, "TI-Innovator")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
innovator_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
innovator_init_irq
,
.
init_machine
=
innovator_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-nokia770.c
View file @
71ee7dad
...
...
@@ -400,6 +400,7 @@ MACHINE_START(NOKIA770, "Nokia 770")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_nokia770_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_nokia770_init_irq
,
.
init_machine
=
omap_nokia770_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-osk.c
View file @
71ee7dad
...
...
@@ -584,6 +584,7 @@ MACHINE_START(OMAP_OSK, "TI-OSK")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
osk_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
osk_init_irq
,
.
init_machine
=
osk_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-palmte.c
View file @
71ee7dad
...
...
@@ -373,6 +373,7 @@ MACHINE_START(OMAP_PALMTE, "OMAP310 based Palm Tungsten E")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_palmte_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_palmte_init_irq
,
.
init_machine
=
omap_palmte_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-palmtt.c
View file @
71ee7dad
...
...
@@ -321,6 +321,7 @@ MACHINE_START(OMAP_PALMTT, "OMAP1510 based Palm Tungsten|T")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_palmtt_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_palmtt_init_irq
,
.
init_machine
=
omap_palmtt_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-palmz71.c
View file @
71ee7dad
...
...
@@ -338,10 +338,12 @@ omap_palmz71_map_io(void)
}
MACHINE_START
(
OMAP_PALMZ71
,
"OMAP310 based Palm Zire71"
)
.
phys_io
=
0xfff00000
,
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,.
map_io
=
omap_palmz71_map_io
,
.
init_irq
=
omap_palmz71_init_irq
,
.
init_machine
=
omap_palmz71_init
,
.
timer
=
&
omap_timer
,
.
phys_io
=
0xfff00000
,
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_palmz71_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_palmz71_init_irq
,
.
init_machine
=
omap_palmz71_init
,
.
timer
=
&
omap_timer
,
MACHINE_END
arch/arm/mach-omap1/board-perseus2.c
View file @
71ee7dad
...
...
@@ -339,6 +339,7 @@ MACHINE_START(OMAP_PERSEUS2, "OMAP730 Perseus2")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_perseus2_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_perseus2_init_irq
,
.
init_machine
=
omap_perseus2_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/board-sx1.c
View file @
71ee7dad
...
...
@@ -423,7 +423,8 @@ MACHINE_START(SX1, "OMAP310 based Siemens SX1")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
omap_sx1_map_io
,
.
init_irq
=
omap_sx1_init_irq
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_sx1_init_irq
,
.
init_machine
=
omap_sx1_init
,
.
timer
=
&
omap_timer
,
MACHINE_END
arch/arm/mach-omap1/board-voiceblue.c
View file @
71ee7dad
...
...
@@ -287,6 +287,7 @@ MACHINE_START(VOICEBLUE, "VoiceBlue OMAP5910")
.
io_pg_offst
=
((
0xfef00000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x10000100
,
.
map_io
=
voiceblue_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
voiceblue_init_irq
,
.
init_machine
=
voiceblue_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap1/io.c
View file @
71ee7dad
...
...
@@ -22,7 +22,6 @@
extern
void
omap_check_revision
(
void
);
extern
void
omap_sram_init
(
void
);
extern
void
omapfb_reserve_sdram
(
void
);
/*
* The machine specific code may provide the extra mapping besides the
...
...
@@ -122,7 +121,6 @@ void __init omap1_map_common_io(void)
#endif
omap_sram_init
();
omapfb_reserve_sdram
();
}
/*
...
...
arch/arm/mach-omap2/board-2430sdp.c
View file @
71ee7dad
...
...
@@ -248,6 +248,7 @@ MACHINE_START(OMAP_2430SDP, "OMAP2430 sdp2430 board")
.
io_pg_offst
=
((
0xfa000000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x80000100
,
.
map_io
=
omap_2430sdp_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_2430sdp_init_irq
,
.
init_machine
=
omap_2430sdp_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap2/board-3430sdp.c
View file @
71ee7dad
...
...
@@ -815,6 +815,7 @@ MACHINE_START(OMAP_3430SDP, "OMAP3430 3430SDP board")
.
io_pg_offst
=
((
0xfa000000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x80000100
,
.
map_io
=
omap_3430sdp_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_3430sdp_init_irq
,
.
init_machine
=
omap_3430sdp_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap2/board-3630sdp.c
View file @
71ee7dad
...
...
@@ -108,6 +108,7 @@ MACHINE_START(OMAP_3630SDP, "OMAP 3630SDP board")
.
io_pg_offst
=
((
0xfa000000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x80000100
,
.
map_io
=
omap_sdp_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_sdp_init_irq
,
.
init_machine
=
omap_sdp_init
,
.
timer
=
&
omap_timer
,
...
...
arch/arm/mach-omap2/board-4430sdp.c
View file @
71ee7dad
...
...
@@ -402,6 +402,7 @@ MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board")
.
io_pg_offst
=
((
0xfa000000
)
>>
18
)
&
0xfffc
,
.
boot_params
=
0x80000100
,
.
map_io
=
omap_4430sdp_map_io
,
.
reserve
=
omap_reserve
,
.
init_irq
=
omap_4430sdp_init_irq
,
.
init_machine
=
omap_4430sdp_init
,
.
timer
=
&
omap_timer
,
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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