Skip to content

Commit

Permalink
[ARM] 4300/1: Add picotux 200 ARM board
Browse files Browse the repository at this point in the history
Add the picotux 200 ARM board:
 - Enable its machine type in the filter in head.S
 - Add configuration option
 - Add board initialisation
 - Add default configuration

Signed-off-by: Simon Richter <Simon.Richter@kleinhenz.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Simon Richter authored and Russell King committed Apr 21, 2007
1 parent 235b185 commit 5d01f13
Show file tree
Hide file tree
Showing 5 changed files with 1,566 additions and 0 deletions.
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 5d01f13

Please sign in to comment.