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
f420db84
Commit
f420db84
authored
Dec 19, 2008
by
Sascha Hauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MX2: Add SPI devices/resources
Signed-off-by:
Sascha Hauer
<
s.hauer@pengutronix.de
>
parent
88b05647
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
0 deletions
+72
-0
arch/arm/mach-mx2/devices.c
arch/arm/mach-mx2/devices.c
+68
-0
arch/arm/mach-mx2/devices.h
arch/arm/mach-mx2/devices.h
+4
-0
No files found.
arch/arm/mach-mx2/devices.c
View file @
f420db84
...
...
@@ -39,6 +39,74 @@
#include "devices.h"
/*
* SPI master controller
*
* - i.MX1: 2 channel (slighly different register setting)
* - i.MX21: 2 channel
* - i.MX27: 3 channel
*/
static
struct
resource
mxc_spi_resources0
[]
=
{
{
.
start
=
CSPI1_BASE_ADDR
,
.
end
=
CSPI1_BASE_ADDR
+
SZ_4K
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MXC_INT_CSPI1
,
.
end
=
MXC_INT_CSPI1
,
.
flags
=
IORESOURCE_IRQ
,
},
};
static
struct
resource
mxc_spi_resources1
[]
=
{
{
.
start
=
CSPI2_BASE_ADDR
,
.
end
=
CSPI2_BASE_ADDR
+
SZ_4K
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MXC_INT_CSPI2
,
.
end
=
MXC_INT_CSPI2
,
.
flags
=
IORESOURCE_IRQ
,
},
};
#ifdef CONFIG_MACH_MX27
static
struct
resource
mxc_spi_resources2
[]
=
{
{
.
start
=
CSPI3_BASE_ADDR
,
.
end
=
CSPI3_BASE_ADDR
+
SZ_4K
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MXC_INT_CSPI3
,
.
end
=
MXC_INT_CSPI3
,
.
flags
=
IORESOURCE_IRQ
,
},
};
#endif
struct
platform_device
mxc_spi_device0
=
{
.
name
=
"spi_imx"
,
.
id
=
0
,
.
num_resources
=
ARRAY_SIZE
(
mxc_spi_resources0
),
.
resource
=
mxc_spi_resources0
,
};
struct
platform_device
mxc_spi_device1
=
{
.
name
=
"spi_imx"
,
.
id
=
1
,
.
num_resources
=
ARRAY_SIZE
(
mxc_spi_resources1
),
.
resource
=
mxc_spi_resources1
,
};
#ifdef CONFIG_MACH_MX27
struct
platform_device
mxc_spi_device2
=
{
.
name
=
"spi_imx"
,
.
id
=
2
,
.
num_resources
=
ARRAY_SIZE
(
mxc_spi_resources2
),
.
resource
=
mxc_spi_resources2
,
};
#endif
/*
* General Purpose Timer
* - i.MX21: 3 timers
...
...
arch/arm/mach-mx2/devices.h
View file @
f420db84
...
...
@@ -23,3 +23,7 @@ extern struct platform_device mxc_otg_udc_device;
extern
struct
platform_device
mxc_otg_host
;
extern
struct
platform_device
mxc_usbh1
;
extern
struct
platform_device
mxc_usbh2
;
extern
struct
platform_device
mxc_spi_device0
;
extern
struct
platform_device
mxc_spi_device1
;
extern
struct
platform_device
mxc_spi_device2
;
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