Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
f6e1901c
Commit
f6e1901c
authored
Aug 11, 2010
by
Ben Dooks
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-2636/i2c/nuc' into next-i2c
parents
d8a6206d
ededad3e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
726 additions
and
0 deletions
+726
-0
arch/arm/mach-w90x900/include/mach/i2c.h
arch/arm/mach-w90x900/include/mach/i2c.h
+9
-0
drivers/i2c/busses/Kconfig
drivers/i2c/busses/Kconfig
+7
-0
drivers/i2c/busses/Makefile
drivers/i2c/busses/Makefile
+1
-0
drivers/i2c/busses/i2c-nuc900.c
drivers/i2c/busses/i2c-nuc900.c
+709
-0
No files found.
arch/arm/mach-w90x900/include/mach/i2c.h
0 → 100644
View file @
f6e1901c
#ifndef __ASM_ARCH_NUC900_I2C_H
#define __ASM_ARCH_NUC900_I2C_H
struct
nuc900_platform_i2c
{
int
bus_num
;
unsigned
long
bus_freq
;
};
#endif
/* __ASM_ARCH_NUC900_I2C_H */
drivers/i2c/busses/Kconfig
View file @
f6e1901c
...
@@ -448,6 +448,13 @@ config I2C_NOMADIK
...
@@ -448,6 +448,13 @@ config I2C_NOMADIK
If you say yes to this option, support will be included for the
If you say yes to this option, support will be included for the
I2C interface from ST-Ericsson's Nomadik and Ux500 architectures.
I2C interface from ST-Ericsson's Nomadik and Ux500 architectures.
config I2C_NUC900
tristate "NUC900 I2C Driver"
depends on ARCH_W90X900
help
Say Y here to include support for I2C controller in the
Winbond/Nuvoton NUC900 based System-on-Chip devices.
config I2C_OCORES
config I2C_OCORES
tristate "OpenCores I2C Controller"
tristate "OpenCores I2C Controller"
depends on EXPERIMENTAL
depends on EXPERIMENTAL
...
...
drivers/i2c/busses/Makefile
View file @
f6e1901c
...
@@ -43,6 +43,7 @@ obj-$(CONFIG_I2C_IXP2000) += i2c-ixp2000.o
...
@@ -43,6 +43,7 @@ obj-$(CONFIG_I2C_IXP2000) += i2c-ixp2000.o
obj-$(CONFIG_I2C_MPC)
+=
i2c-mpc.o
obj-$(CONFIG_I2C_MPC)
+=
i2c-mpc.o
obj-$(CONFIG_I2C_MV64XXX)
+=
i2c-mv64xxx.o
obj-$(CONFIG_I2C_MV64XXX)
+=
i2c-mv64xxx.o
obj-$(CONFIG_I2C_NOMADIK)
+=
i2c-nomadik.o
obj-$(CONFIG_I2C_NOMADIK)
+=
i2c-nomadik.o
obj-$(CONFIG_I2C_NUC900)
+=
i2c-nuc900.o
obj-$(CONFIG_I2C_OCORES)
+=
i2c-ocores.o
obj-$(CONFIG_I2C_OCORES)
+=
i2c-ocores.o
obj-$(CONFIG_I2C_OMAP)
+=
i2c-omap.o
obj-$(CONFIG_I2C_OMAP)
+=
i2c-omap.o
obj-$(CONFIG_I2C_PASEMI)
+=
i2c-pasemi.o
obj-$(CONFIG_I2C_PASEMI)
+=
i2c-pasemi.o
...
...
drivers/i2c/busses/i2c-nuc900.c
0 → 100644
View file @
f6e1901c
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment