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
a21ca95f
Commit
a21ca95f
authored
16 years ago
by
Heiko Schocher
Committed by
Wolfgang Denk
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mgsuvd: fix compiler warning when using soft_i2c driver
Signed-off-by:
Heiko Schocher
<
hs@denx.de
>
parent
cac9cf78
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
+2
-1
2 additions, 1 deletion
board/keymile/common/common.c
drivers/i2c/soft_i2c.c
+4
-0
4 additions, 0 deletions
drivers/i2c/soft_i2c.c
include/configs/mgsuvd.h
+9
-9
9 additions, 9 deletions
include/configs/mgsuvd.h
with
15 additions
and
10 deletions
board/keymile/common/common.c
+
2
−
1
View file @
a21ca95f
...
...
@@ -34,6 +34,7 @@
#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
#include
<i2c.h>
#endif
#include
<asm/io.h>
extern
int
i2c_soft_read_pin
(
void
);
...
...
@@ -400,7 +401,7 @@ static void set_scl (int state)
static
int
get_sda
(
void
)
{
return
i2c_soft_read_pin
()
;
return
I2C_READ
;
}
static
int
get_scl
(
void
)
...
...
This diff is collapsed.
Click to expand it.
drivers/i2c/soft_i2c.c
+
4
−
0
View file @
a21ca95f
...
...
@@ -28,6 +28,7 @@
#include
<common.h>
#ifdef CONFIG_MPC8260
/* only valid for MPC8260 */
#include
<ioports.h>
#include
<asm/io.h>
#endif
#ifdef CONFIG_AT91RM9200
/* need this for the at91rm9200 */
#include
<asm/io.h>
...
...
@@ -39,6 +40,9 @@
#ifdef CONFIG_LPC2292
#include
<asm/arch/hardware.h>
#endif
#ifdef CONFIG_MPC866
/* only valid for MPC866 */
#include
<asm/io.h>
#endif
#include
<i2c.h>
/* #define DEBUG_I2C */
...
...
This diff is collapsed.
Click to expand it.
include/configs/mgsuvd.h
+
9
−
9
View file @
a21ca95f
...
...
@@ -346,8 +346,8 @@
/*
* Software (bit-bang) I2C driver configuration
*/
#define I2C_BASE_DIR (CONFIG_SYS_PIGGY_BASE + 0x04)
#define I2C_BASE_PORT (CONFIG_SYS_PIGGY_BASE + 0x09)
#define I2C_BASE_DIR
((u16 *)
(CONFIG_SYS_PIGGY_BASE + 0x04)
)
#define I2C_BASE_PORT
((u8 *)
(CONFIG_SYS_PIGGY_BASE + 0x09)
)
#define SDA_BIT 0x40
#define SCL_BIT 0x80
...
...
@@ -356,18 +356,18 @@
#define I2C_ACTIVE do {} while (0)
#define I2C_TRISTATE do {} while (0)
#define I2C_READ
i2c_soft_read_pin (
)
#define I2C_READ
((in_8(I2C_BASE_PORT) & SDA_BIT) == SDA_BIT
)
#define I2C_SDA(bit) if(bit) { \
*(unsigned short *)(
I2C_BASE_DIR
) &= ~
SDA_CONF; \
clrbits(be16,
I2C_BASE_DIR
,
SDA_CONF
)
; \
} else { \
*(unsigned char *)(
I2C_BASE_PORT
) &= ~
SDA_BIT; \
*(unsigned short *)(
I2C_BASE_DIR
) |=
SDA_CONF; \
clrbits(8,
I2C_BASE_PORT
,
SDA_BIT
)
; \
setbits(be16,
I2C_BASE_DIR
,
SDA_CONF
)
; \
}
#define I2C_SCL(bit) if(bit) { \
*(unsigned short *)(
I2C_BASE_DIR
) &= ~
SCL_CONF; \
clrbits(be16,
I2C_BASE_DIR
,
SCL_CONF
)
; \
} else { \
*(unsigned char *)(
I2C_BASE_PORT
) &= ~
SCL_BIT; \
*(unsigned short *)(
I2C_BASE_DIR
) |=
SCL_CONF; \
clrbits(8,
I2C_BASE_PORT
,
SCL_BIT
)
; \
setbits(be16,
I2C_BASE_DIR
,
SCL_CONF
)
; \
}
#define I2C_DELAY udelay(50)
/* 1/4 I2C clock duration */
...
...
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