Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
u-boot-2015.04
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
vesta
u-boot-2015.04
Commits
49a7720b
Commit
49a7720b
authored
15 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-i2c
parents
5a625149
39df00d9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
board/keymile/common/common.c
+20
-0
20 additions, 0 deletions
board/keymile/common/common.c
drivers/i2c/fsl_i2c.c
+6
-0
6 additions, 0 deletions
drivers/i2c/fsl_i2c.c
include/configs/kmeter1.h
+0
-1
0 additions, 1 deletion
include/configs/kmeter1.h
with
26 additions
and
1 deletion
board/keymile/common/common.c
+
20
−
0
View file @
49a7720b
...
...
@@ -424,6 +424,7 @@ static int get_scl (void)
#endif
#if !defined(CONFIG_KMETER1)
static
void
writeStartSeq
(
void
)
{
set_sda
(
1
);
...
...
@@ -474,6 +475,7 @@ static int i2c_make_abort (void)
get_sda
();
return
ret
;
}
#endif
/**
* i2c_init_board - reset i2c bus. When the board is powercycled during a
...
...
@@ -481,6 +483,23 @@ static int i2c_make_abort (void)
*/
void
i2c_init_board
(
void
)
{
#if defined(CONFIG_KMETER1)
struct
fsl_i2c
*
dev
;
dev
=
(
struct
fsl_i2c
*
)
(
CONFIG_SYS_IMMR
+
CONFIG_SYS_I2C_OFFSET
);
uchar
dummy
;
out_8
(
&
dev
->
cr
,
(
I2C_CR_MSTA
));
out_8
(
&
dev
->
cr
,
(
I2C_CR_MEN
|
I2C_CR_MSTA
));
dummy
=
in_8
(
&
dev
->
dr
);
dummy
=
in_8
(
&
dev
->
dr
);
if
(
dummy
!=
0xff
)
{
dummy
=
in_8
(
&
dev
->
dr
);
}
out_8
(
&
dev
->
cr
,
(
I2C_CR_MEN
));
out_8
(
&
dev
->
cr
,
0x00
);
out_8
(
&
dev
->
cr
,
(
I2C_CR_MEN
));
#else
#if defined(CONFIG_HARD_I2C)
volatile
immap_t
*
immap
=
(
immap_t
*
)
CONFIG_SYS_IMMR
;
volatile
i2c8260_t
*
i2c
=
(
i2c8260_t
*
)
&
immap
->
im_i2c
;
...
...
@@ -500,6 +519,7 @@ void i2c_init_board(void)
/* Set the PortPins back to use for I2C */
setports
(
0
);
#endif
#endif
}
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
drivers/i2c/fsl_i2c.c
+
6
−
0
View file @
49a7720b
...
...
@@ -178,6 +178,12 @@ i2c_init(int speed, int slaveadd)
struct
fsl_i2c
*
dev
;
unsigned
int
temp
;
#ifdef CONFIG_SYS_I2C_INIT_BOARD
/* call board specific i2c bus reset routine before accessing the */
/* environment, which might be in a chip on that bus. For details */
/* about this problem see doc/I2C_Edge_Conditions. */
i2c_init_board
();
#endif
dev
=
(
struct
fsl_i2c
*
)
(
CONFIG_SYS_IMMR
+
CONFIG_SYS_I2C_OFFSET
);
writeb
(
0
,
&
dev
->
cr
);
/* stop I2C controller */
...
...
This diff is collapsed.
Click to expand it.
include/configs/kmeter1.h
+
0
−
1
View file @
49a7720b
...
...
@@ -33,7 +33,6 @@
/* include common defines/options for all Keymile boards */
#include
"keymile-common.h"
#undef CONFIG_SYS_I2C_INIT_BOARD
#define CONFIG_MISC_INIT_R 1
/*
* System Clock Setup
...
...
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