Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
f5c254d7
Commit
f5c254d7
authored
19 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Fix the machine-id of the Cogent csb637 board
Patch by Anders Larsen, 05 Oct 2005
parent
78da6077
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
README
+7
-7
7 additions, 7 deletions
README
board/csb637/csb637.c
+2
-2
2 additions, 2 deletions
board/csb637/csb637.c
include/configs/csb637.h
+2
-1
2 additions, 1 deletion
include/configs/csb637.h
with
14 additions
and
10 deletions
CHANGELOG
+
3
−
0
View file @
f5c254d7
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.4:
Changes for U-Boot 1.1.4:
======================================================================
======================================================================
* Fix the machine-id of the Cogent csb637 board
Patch by Anders Larsen, 05 Oct 2005
* Complete support for the KwikByte KB920x boards
* Complete support for the KwikByte KB920x boards
Patch by Anders Larsen, 05 Oct 2005
Patch by Anders Larsen, 05 Oct 2005
...
...
This diff is collapsed.
Click to expand it.
README
+
7
−
7
View file @
f5c254d7
...
@@ -303,13 +303,13 @@ The following options need to be configured:
...
@@ -303,13 +303,13 @@ The following options need to be configured:
-----------------
-----------------
CONFIG_ARMADILLO, CONFIG_AT91RM9200DK, CONFIG_CERF250,
CONFIG_ARMADILLO, CONFIG_AT91RM9200DK, CONFIG_CERF250,
CONFIG_DNP1110, CONFIG_EP7312,
CONFIG_H2_OMAP1610,
CONFIG_CSB637,
CONFIG_DNP1110, CONFIG_EP7312,
CONFIG_HHP_CRADLE, CONFIG_IMPA7
, CONFIG_INNOVATOROMAP1510
,
CONFIG_H
2_OMAP1610, CONFIG_H
HP_CRADLE, CONFIG_IMPA7,
CONFIG_INNOVATOROMAP1
6
10, CONFIG_
KB9202,
CONFIG_
LART
,
CONFIG_INNOVATOROMAP1
5
10, CONFIG_
INNOVATOROMAP1610,
CONFIG_
KB9202
,
CONFIG_LPD7A400, CONFIG_LUBBOCK,
CONFIG_OSK_OMAP5912,
CONFIG_LART,
CONFIG_LPD7A400, CONFIG_LUBBOCK,
CONFIG_OMAP2420H4, CONFIG_SHANNON,
CONFIG_P2_OMAP730,
CONFIG_OSK_OMAP5912,
CONFIG_OMAP2420H4, CONFIG_SHANNON,
CONFIG_SMDK2400, CONFIG_SMDK2410,
CONFIG_TRAB,
CONFIG_P2_OMAP730,
CONFIG_SMDK2400, CONFIG_SMDK2410,
CONFIG_VCMA9
CONFIG_TRAB,
CONFIG_VCMA9
MicroBlaze based boards:
MicroBlaze based boards:
------------------------
------------------------
...
...
This diff is collapsed.
Click to expand it.
board/csb637/csb637.c
+
2
−
2
View file @
f5c254d7
...
@@ -41,8 +41,8 @@ int board_init (void)
...
@@ -41,8 +41,8 @@ int board_init (void)
/* memory and cpu-speed are setup before relocation */
/* memory and cpu-speed are setup before relocation */
/* so we do _nothing_ here */
/* so we do _nothing_ here */
/* arch number of
AT91RM9200DK
-Board */
/* arch number of
CSB637
-Board */
gd
->
bd
->
bi_arch_number
=
MACH_TYPE_
AT91RM9200
;
gd
->
bd
->
bi_arch_number
=
MACH_TYPE_
CSB637
;
/* adress of boot parameters */
/* adress of boot parameters */
gd
->
bd
->
bi_boot_params
=
PHYS_SDRAM
+
0x100
;
gd
->
bd
->
bi_boot_params
=
PHYS_SDRAM
+
0x100
;
...
...
This diff is collapsed.
Click to expand it.
include/configs/csb637.h
+
2
−
1
View file @
f5c254d7
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#define CONFIG_ARM920T 1
/* This is an ARM920T Core */
#define CONFIG_ARM920T 1
/* This is an ARM920T Core */
#define CONFIG_AT91RM9200 1
/* It's an Atmel AT91RM9200 SoC */
#define CONFIG_AT91RM9200 1
/* It's an Atmel AT91RM9200 SoC */
#define CONFIG_CSB637 1
/* on a CSB637 board */
#undef CONFIG_USE_IRQ
/* we don't need IRQ/FIQ stuff */
#undef CONFIG_USE_IRQ
/* we don't need IRQ/FIQ stuff */
#define USE_920T_MMU 1
#define USE_920T_MMU 1
...
@@ -78,7 +79,7 @@
...
@@ -78,7 +79,7 @@
#define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024)
#define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024)
#define CFG_GBL_DATA_SIZE 128
/* size in bytes reserved for initial data */
#define CFG_GBL_DATA_SIZE 128
/* size in bytes reserved for initial data */
#define CONFIG_BAUDRATE
384
00
#define CONFIG_BAUDRATE
1152
00
#define CFG_AT91C_BRGR_DIVISOR 75
/* hardcode so no __divsi3 : AT91C_MASTER_CLOCK / baudrate / 16 */
#define CFG_AT91C_BRGR_DIVISOR 75
/* hardcode so no __divsi3 : AT91C_MASTER_CLOCK / baudrate / 16 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment