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
Kirill Smelkov
linux
Commits
eeed2279
Commit
eeed2279
authored
Jan 22, 2012
by
Geert Uytterhoeven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m68k/amiga: Add error checks when registering platform devices
Signed-off-by:
Geert Uytterhoeven
<
geert@linux-m68k.org
>
parent
943ce308
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
32 deletions
+90
-32
arch/m68k/amiga/platform.c
arch/m68k/amiga/platform.c
+90
-32
No files found.
arch/m68k/amiga/platform.c
View file @
eeed2279
...
...
@@ -6,6 +6,7 @@
* for more details.
*/
#include <linux/err.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/zorro.h>
...
...
@@ -46,11 +47,18 @@ static const struct resource zorro_resources[] __initconst = {
static
int
__init
amiga_init_bus
(
void
)
{
struct
platform_device
*
pdev
;
unsigned
int
n
;
if
(
!
MACH_IS_AMIGA
||
!
AMIGAHW_PRESENT
(
ZORRO
))
return
-
ENODEV
;
platform_device_register_simple
(
"amiga-zorro"
,
-
1
,
zorro_resources
,
AMIGAHW_PRESENT
(
ZORRO3
)
?
4
:
2
);
n
=
AMIGAHW_PRESENT
(
ZORRO3
)
?
4
:
2
;
pdev
=
platform_device_register_simple
(
"amiga-zorro"
,
-
1
,
zorro_resources
,
n
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
return
0
;
}
...
...
@@ -126,70 +134,120 @@ static const struct resource amiga_rtc_resource __initconst = {
static
int
__init
amiga_init_devices
(
void
)
{
struct
platform_device
*
pdev
;
int
error
;
if
(
!
MACH_IS_AMIGA
)
return
-
ENODEV
;
/* video hardware */
if
(
AMIGAHW_PRESENT
(
AMI_VIDEO
))
platform_device_register_simple
(
"amiga-video"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_VIDEO
))
{
pdev
=
platform_device_register_simple
(
"amiga-video"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
/* sound hardware */
if
(
AMIGAHW_PRESENT
(
AMI_AUDIO
))
platform_device_register_simple
(
"amiga-audio"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_AUDIO
))
{
pdev
=
platform_device_register_simple
(
"amiga-audio"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
/* storage interfaces */
if
(
AMIGAHW_PRESENT
(
AMI_FLOPPY
))
platform_device_register_simple
(
"amiga-floppy"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_FLOPPY
))
{
pdev
=
platform_device_register_simple
(
"amiga-floppy"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
A3000_SCSI
))
platform_device_register_simple
(
"amiga-a3000-scsi"
,
-
1
,
&
a3000_scsi_resource
,
1
);
if
(
AMIGAHW_PRESENT
(
A3000_SCSI
))
{
pdev
=
platform_device_register_simple
(
"amiga-a3000-scsi"
,
-
1
,
&
a3000_scsi_resource
,
1
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
A4000_SCSI
))
platform_device_register_simple
(
"amiga-a4000t-scsi"
,
-
1
,
&
a4000t_scsi_resource
,
1
);
if
(
AMIGAHW_PRESENT
(
A4000_SCSI
))
{
pdev
=
platform_device_register_simple
(
"amiga-a4000t-scsi"
,
-
1
,
&
a4000t_scsi_resource
,
1
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
A1200_IDE
)
||
z_dev_present
(
ZORRO_PROD_MTEC_VIPER_MK_V_E_MATRIX_530_SCSI_IDE
))
{
pdev
=
platform_device_register_simple
(
"amiga-gayle-ide"
,
-
1
,
&
a1200_ide_resource
,
1
);
platform_device_add_data
(
pdev
,
&
a1200_ide_pdata
,
sizeof
(
a1200_ide_pdata
));
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
error
=
platform_device_add_data
(
pdev
,
&
a1200_ide_pdata
,
sizeof
(
a1200_ide_pdata
));
if
(
error
)
return
error
;
}
if
(
AMIGAHW_PRESENT
(
A4000_IDE
))
{
pdev
=
platform_device_register_simple
(
"amiga-gayle-ide"
,
-
1
,
&
a4000_ide_resource
,
1
);
platform_device_add_data
(
pdev
,
&
a4000_ide_pdata
,
sizeof
(
a4000_ide_pdata
));
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
error
=
platform_device_add_data
(
pdev
,
&
a4000_ide_pdata
,
sizeof
(
a4000_ide_pdata
));
if
(
error
)
return
error
;
}
/* other I/O hardware */
if
(
AMIGAHW_PRESENT
(
AMI_KEYBOARD
))
platform_device_register_simple
(
"amiga-keyboard"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_KEYBOARD
))
{
pdev
=
platform_device_register_simple
(
"amiga-keyboard"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
AMI_MOUSE
))
platform_device_register_simple
(
"amiga-mouse"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_MOUSE
))
{
pdev
=
platform_device_register_simple
(
"amiga-mouse"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
AMI_SERIAL
))
platform_device_register_simple
(
"amiga-serial"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_SERIAL
))
{
pdev
=
platform_device_register_simple
(
"amiga-serial"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
AMI_PARALLEL
))
platform_device_register_simple
(
"amiga-parallel"
,
-
1
,
NULL
,
0
);
if
(
AMIGAHW_PRESENT
(
AMI_PARALLEL
))
{
pdev
=
platform_device_register_simple
(
"amiga-parallel"
,
-
1
,
NULL
,
0
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
/* real time clocks */
if
(
AMIGAHW_PRESENT
(
A2000_CLK
))
platform_device_register_simple
(
"rtc-msm6242"
,
-
1
,
&
amiga_rtc_resource
,
1
);
if
(
AMIGAHW_PRESENT
(
A2000_CLK
))
{
pdev
=
platform_device_register_simple
(
"rtc-msm6242"
,
-
1
,
&
amiga_rtc_resource
,
1
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
if
(
AMIGAHW_PRESENT
(
A3000_CLK
))
platform_device_register_simple
(
"rtc-rp5c01"
,
-
1
,
&
amiga_rtc_resource
,
1
);
if
(
AMIGAHW_PRESENT
(
A3000_CLK
))
{
pdev
=
platform_device_register_simple
(
"rtc-rp5c01"
,
-
1
,
&
amiga_rtc_resource
,
1
);
if
(
IS_ERR
(
pdev
))
return
PTR_ERR
(
pdev
);
}
return
0
;
}
...
...
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