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
Reform
reform-boundary-uboot
Commits
08abe158
Commit
08abe158
authored
19 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Add CompactFlash support for HMI1001 board.
parent
ee073a55
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+4
-0
4 additions, 0 deletions
CHANGELOG
include/configs/hmi1001.h
+35
-0
35 additions, 0 deletions
include/configs/hmi1001.h
with
39 additions
and
0 deletions
CHANGELOG
+
4
−
0
View file @
08abe158
...
@@ -2,6 +2,10 @@
...
@@ -2,6 +2,10 @@
Changes for U-Boot 1.1.3:
Changes for U-Boot 1.1.3:
======================================================================
======================================================================
* Add CompactFlash support for HMI1001 board.
* Adjust printed board ID for LWMON board.
* Add new argument format for flash commands to allow for usage like
* Add new argument format for flash commands to allow for usage like
"erase $(addr) +$(filesize)", i. e. a size argument can be used and
"erase $(addr) +$(filesize)", i. e. a size argument can be used and
U-Boot will automaticially find the end of the corresponding sector.
U-Boot will automaticially find the end of the corresponding sector.
...
...
This diff is collapsed.
Click to expand it.
include/configs/hmi1001.h
+
35
−
0
View file @
08abe158
...
@@ -52,6 +52,9 @@
...
@@ -52,6 +52,9 @@
#define CONFIG_BAUDRATE 115200
/* ... at 115200 bps */
#define CONFIG_BAUDRATE 115200
/* ... at 115200 bps */
#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
/* Partitions */
#define CONFIG_DOS_PARTITION
/*
/*
* Supported commands
* Supported commands
*/
*/
...
@@ -60,6 +63,7 @@
...
@@ -60,6 +63,7 @@
CFG_CMD_DHCP | \
CFG_CMD_DHCP | \
CFG_CMD_EEPROM | \
CFG_CMD_EEPROM | \
CFG_CMD_I2C | \
CFG_CMD_I2C | \
CFG_CMD_IDE | \
CFG_CMD_NFS | \
CFG_CMD_NFS | \
CFG_CMD_SNTP)
CFG_CMD_SNTP)
...
@@ -270,4 +274,35 @@
...
@@ -270,4 +274,35 @@
#define CFG_CS_BURST 0x00000000
#define CFG_CS_BURST 0x00000000
#define CFG_CS_DEADCYCLE 0x33333333
#define CFG_CS_DEADCYCLE 0x33333333
/*-----------------------------------------------------------------------
* IDE/ATA stuff Supports IDE harddisk
*-----------------------------------------------------------------------
*/
#undef CONFIG_IDE_8xx_PCCARD
/* Use IDE with PC Card Adapter */
#undef CONFIG_IDE_8xx_DIRECT
/* Direct IDE not supported */
#undef CONFIG_IDE_LED
/* LED for ide not supported */
#define CFG_IDE_MAXBUS 1
/* max. 1 IDE bus */
#define CFG_IDE_MAXDEVICE 2
/* max. 2 drives per IDE bus */
#define CFG_ATA_IDE0_OFFSET 0x0000
#define CFG_ATA_BASE_ADDR MPC5XXX_ATA
/* Offset for data I/O */
#define CFG_ATA_DATA_OFFSET (0x0060)
/* Offset for normal register accesses */
#define CFG_ATA_REG_OFFSET (CFG_ATA_DATA_OFFSET)
/* Offset for alternate registers */
#define CFG_ATA_ALT_OFFSET (0x005C)
/* Interval between registers */
#define CFG_ATA_STRIDE 4
#define CONFIG_ATAPI 1
#endif
/* __CONFIG_H */
#endif
/* __CONFIG_H */
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