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
93e7e720
Commit
93e7e720
authored
Feb 13, 2004
by
Benjamin Herrenschmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc64: fix build of pmac "mac-io" IDE driver on 64 bits kernel
parent
eba4fc41
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
drivers/ide/ppc/pmac.c
drivers/ide/ppc/pmac.c
+17
-6
No files found.
drivers/ide/ppc/pmac.c
View file @
93e7e720
...
@@ -39,13 +39,16 @@
...
@@ -39,13 +39,16 @@
#include <asm/io.h>
#include <asm/io.h>
#include <asm/dbdma.h>
#include <asm/dbdma.h>
#include <asm/ide.h>
#include <asm/ide.h>
#include <asm/mediabay.h>
#include <asm/pci-bridge.h>
#include <asm/pci-bridge.h>
#include <asm/machdep.h>
#include <asm/machdep.h>
#include <asm/pmac_feature.h>
#include <asm/pmac_feature.h>
#include <asm/sections.h>
#include <asm/sections.h>
#include <asm/irq.h>
#include <asm/irq.h>
#ifndef CONFIG_PPC64
#include <asm/mediabay.h>
#endif
#include "ide-timing.h"
#include "ide-timing.h"
extern
void
ide_do_request
(
ide_hwgroup_t
*
hwgroup
,
int
masked_irq
);
extern
void
ide_do_request
(
ide_hwgroup_t
*
hwgroup
,
int
masked_irq
);
...
@@ -1183,6 +1186,7 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
...
@@ -1183,6 +1186,7 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
/* Make sure we have sane timings */
/* Make sure we have sane timings */
sanitize_timings
(
pmif
);
sanitize_timings
(
pmif
);
#ifndef CONFIG_PPC64
/* XXX FIXME: Media bay stuff need re-organizing */
/* XXX FIXME: Media bay stuff need re-organizing */
if
(
np
->
parent
&&
np
->
parent
->
name
if
(
np
->
parent
&&
np
->
parent
->
name
&&
strcasecmp
(
np
->
parent
->
name
,
"media-bay"
)
==
0
)
{
&&
strcasecmp
(
np
->
parent
->
name
,
"media-bay"
)
==
0
)
{
...
@@ -1198,7 +1202,9 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
...
@@ -1198,7 +1202,9 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
* units, I keep the old way
* units, I keep the old way
*/
*/
ppc_md
.
feature_call
(
PMAC_FTR_IDE_ENABLE
,
np
,
0
,
1
);
ppc_md
.
feature_call
(
PMAC_FTR_IDE_ENABLE
,
np
,
0
,
1
);
}
else
{
}
else
#endif
{
/* This is necessary to enable IDE when net-booting */
/* This is necessary to enable IDE when net-booting */
ppc_md
.
feature_call
(
PMAC_FTR_IDE_RESET
,
np
,
pmif
->
aapl_bus_id
,
1
);
ppc_md
.
feature_call
(
PMAC_FTR_IDE_RESET
,
np
,
pmif
->
aapl_bus_id
,
1
);
ppc_md
.
feature_call
(
PMAC_FTR_IDE_ENABLE
,
np
,
pmif
->
aapl_bus_id
,
1
);
ppc_md
.
feature_call
(
PMAC_FTR_IDE_ENABLE
,
np
,
pmif
->
aapl_bus_id
,
1
);
...
@@ -1238,9 +1244,9 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
...
@@ -1238,9 +1244,9 @@ pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif)
hwif
->
led_act
=
pmu_hd_kick_blink
;
hwif
->
led_act
=
pmu_hd_kick_blink
;
#endif
#endif
printk
(
KERN_INFO
"ide%d: Found Apple %s controller, bus ID %d%s
\n
"
,
printk
(
KERN_INFO
"ide%d: Found Apple %s controller, bus ID %d%s
, irq %d
\n
"
,
hwif
->
index
,
model_name
[
pmif
->
kind
],
pmif
->
aapl_bus_id
,
hwif
->
index
,
model_name
[
pmif
->
kind
],
pmif
->
aapl_bus_id
,
pmif
->
mediabay
?
" (mediabay)"
:
""
);
pmif
->
mediabay
?
" (mediabay)"
:
""
,
hwif
->
irq
);
#ifdef CONFIG_PMAC_PBOOK
#ifdef CONFIG_PMAC_PBOOK
if
(
pmif
->
mediabay
&&
check_media_bay_by_base
(
pmif
->
regbase
,
MB_CD
)
==
0
)
if
(
pmif
->
mediabay
&&
check_media_bay_by_base
(
pmif
->
regbase
,
MB_CD
)
==
0
)
...
@@ -1447,7 +1453,12 @@ pmac_ide_pci_attach(struct pci_dev *pdev, const struct pci_device_id *id)
...
@@ -1447,7 +1453,12 @@ pmac_ide_pci_attach(struct pci_dev *pdev, const struct pci_device_id *id)
#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
pmif
->
dma_regs
=
(
volatile
struct
dbdma_regs
*
)(
base
+
0x1000
);
pmif
->
dma_regs
=
(
volatile
struct
dbdma_regs
*
)(
base
+
0x1000
);
#endif
/* CONFIG_BLK_DEV_IDEDMA_PMAC */
#endif
/* CONFIG_BLK_DEV_IDEDMA_PMAC */
/* We use the OF node irq mapping */
if
(
np
->
n_intrs
==
0
)
pmif
->
irq
=
pdev
->
irq
;
pmif
->
irq
=
pdev
->
irq
;
else
pmif
->
irq
=
np
->
intrs
[
0
].
line
;
pci_set_drvdata
(
pdev
,
hwif
);
pci_set_drvdata
(
pdev
,
hwif
);
...
...
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