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
78da6077
Commit
78da6077
authored
19 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Complete support for the KwikByte KB920x boards
Patch by Anders Larsen, 05 Oct 2005
parent
c0e82d50
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG
+3
-0
3 additions, 0 deletions
CHANGELOG
cpu/arm920t/at91rm9200/i2c.c
+1
-2
1 addition, 2 deletions
cpu/arm920t/at91rm9200/i2c.c
include/configs/kb9202.h
+2
-2
2 additions, 2 deletions
include/configs/kb9202.h
with
6 additions
and
4 deletions
CHANGELOG
+
3
−
0
View file @
78da6077
...
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.4:
======================================================================
* Complete support for the KwikByte KB920x boards
Patch by Anders Larsen, 05 Oct 2005
* Set the AT91RM9200 clock to asynchronous mode
Patch by Anders Larsen, 03 May 2005
...
...
This diff is collapsed.
Click to expand it.
cpu/arm920t/at91rm9200/i2c.c
+
1
−
2
View file @
78da6077
...
...
@@ -65,9 +65,8 @@ at91_xfer(unsigned char chip, unsigned int addr, int alen,
|
((
rw
==
1
)
?
AT91C_TWI_MREAD
:
0
);
/* Set TWI Internal Address Register with first messages data field */
/* only one address byte is supported */
if
(
alen
>
0
)
twi
->
TWI_IADR
=
addr
&
0xff
;
twi
->
TWI_IADR
=
addr
;
length
=
len
;
buf
=
buffer
;
...
...
This diff is collapsed.
Click to expand it.
include/configs/kb9202.h
+
2
−
2
View file @
78da6077
...
...
@@ -116,8 +116,8 @@
#define CFG_ENV_IS_IN_EEPROM
#ifdef CONFIG_KB9202
#define CFG_ENV_OFFSET 0x3
0
00
#define CFG_ENV_SIZE 0x
1
000
#define CFG_ENV_OFFSET 0x3
E
00
#define CFG_ENV_SIZE 0x0
2
00
#else
#define CFG_ENV_OFFSET 0x1000
#define CFG_ENV_SIZE 0x1000
...
...
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