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
34d9cb5e
Commit
34d9cb5e
authored
13 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-i2c
parents
2fa8ca98
4bd5566e
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
common/cmd_i2c.c
+12
-0
12 additions, 0 deletions
common/cmd_i2c.c
drivers/i2c/soft_i2c.c
+1
-0
1 addition, 0 deletions
drivers/i2c/soft_i2c.c
include/i2c.h
+0
-2
0 additions, 2 deletions
include/i2c.h
with
13 additions
and
2 deletions
common/cmd_i2c.c
+
12
−
0
View file @
34d9cb5e
...
@@ -132,6 +132,14 @@ DECLARE_GLOBAL_DATA_PTR;
...
@@ -132,6 +132,14 @@ DECLARE_GLOBAL_DATA_PTR;
#define DISP_LINE_LEN 16
#define DISP_LINE_LEN 16
/* implement possible board specific board init */
void
__def_i2c_init_board
(
void
)
{
return
;
}
void
i2c_init_board
(
void
)
__attribute__
((
weak
,
alias
(
"__def_i2c_init_board"
)));
/* TODO: Implement architecture-specific get/set functions */
/* TODO: Implement architecture-specific get/set functions */
unsigned
int
__def_i2c_get_bus_speed
(
void
)
unsigned
int
__def_i2c_get_bus_speed
(
void
)
{
{
...
@@ -1541,6 +1549,8 @@ int i2x_mux_select_mux(int bus)
...
@@ -1541,6 +1549,8 @@ int i2x_mux_select_mux(int bus)
mux
=
dev
->
mux
;
mux
=
dev
->
mux
;
while
(
mux
!=
NULL
)
{
while
(
mux
!=
NULL
)
{
/* do deblocking on each level of mux, before mux config */
i2c_init_board
();
if
(
i2c_write
(
mux
->
chip
,
0
,
0
,
&
mux
->
channel
,
1
)
!=
0
)
{
if
(
i2c_write
(
mux
->
chip
,
0
,
0
,
&
mux
->
channel
,
1
)
!=
0
)
{
printf
(
"Error setting Mux: chip:%x channel: \
printf
(
"Error setting Mux: chip:%x channel: \
%x
\n
"
,
mux
->
chip
,
mux
->
channel
);
%x
\n
"
,
mux
->
chip
,
mux
->
channel
);
...
@@ -1548,6 +1558,8 @@ int i2x_mux_select_mux(int bus)
...
@@ -1548,6 +1558,8 @@ int i2x_mux_select_mux(int bus)
}
}
mux
=
mux
->
next
;
mux
=
mux
->
next
;
}
}
/* do deblocking on each level of mux and after mux config */
i2c_init_board
();
return
0
;
return
0
;
}
}
#endif
/* CONFIG_I2C_MUX */
#endif
/* CONFIG_I2C_MUX */
This diff is collapsed.
Click to expand it.
drivers/i2c/soft_i2c.c
+
1
−
0
View file @
34d9cb5e
...
@@ -286,6 +286,7 @@ int i2c_set_bus_num(unsigned int bus)
...
@@ -286,6 +286,7 @@ int i2c_set_bus_num(unsigned int bus)
int
ret
;
int
ret
;
ret
=
i2x_mux_select_mux
(
bus
);
ret
=
i2x_mux_select_mux
(
bus
);
i2c_init_board
();
if
(
ret
==
0
)
if
(
ret
==
0
)
i2c_bus_num
=
bus
;
i2c_bus_num
=
bus
;
else
else
...
...
This diff is collapsed.
Click to expand it.
include/i2c.h
+
0
−
2
View file @
34d9cb5e
...
@@ -108,9 +108,7 @@
...
@@ -108,9 +108,7 @@
* repeatedly to change the speed and slave addresses.
* repeatedly to change the speed and slave addresses.
*/
*/
void
i2c_init
(
int
speed
,
int
slaveaddr
);
void
i2c_init
(
int
speed
,
int
slaveaddr
);
#ifdef CONFIG_SYS_I2C_INIT_BOARD
void
i2c_init_board
(
void
);
void
i2c_init_board
(
void
);
#endif
#ifdef CONFIG_SYS_I2C_BOARD_LATE_INIT
#ifdef CONFIG_SYS_I2C_BOARD_LATE_INIT
void
i2c_board_late_init
(
void
);
void
i2c_board_late_init
(
void
);
#endif
#endif
...
...
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