Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146667
b: refs/heads/master
c: 0e75148
h: refs/heads/master
i:
  146665: 65ae558
  146663: ac4104c
v: v3
  • Loading branch information
Paul Mundt committed Apr 20, 2009
1 parent eb1920e commit 8d1c996
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 36 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c563bf0965c86cc6087b09c34ca063fe96d6deca
refs/heads/master: 0e75148108914062cb46ad3dc8f054a628018df7
6 changes: 0 additions & 6 deletions trunk/arch/sh/drivers/pci/ops-dreamcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,6 @@ static int __init gapspci_init(struct pci_channel *chan)
return 0;
}

/* Haven't done anything here as yet */
char * __devinit pcibios_setup(char *str)
{
return str;
}

struct pci_channel board_pci_channels[] = {
{ gapspci_init, &gapspci_pci_ops, &gapspci_io_resource,
&gapspci_mem_resource, 0, 1 },
Expand Down
35 changes: 11 additions & 24 deletions trunk/arch/sh/drivers/pci/ops-sh4.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,30 +106,27 @@ struct pci_ops sh4_pci_ops = {
* Not really related to pci_ops, but it's common and not worth shoving
* somewhere else for now..
*/
static unsigned int pci_probe = PCI_PROBE_CONF1;

int __init sh4_pci_check_direct(struct pci_channel *chan)
{
/*
* Check if configuration works.
*/
if (pci_probe & PCI_PROBE_CONF1) {
unsigned int tmp = pci_read_reg(chan, SH4_PCIPAR);

pci_write_reg(chan, P1SEG, SH4_PCIPAR);
unsigned int tmp = pci_read_reg(chan, SH4_PCIPAR);

if (pci_read_reg(chan, SH4_PCIPAR) == P1SEG) {
pci_write_reg(chan, tmp, SH4_PCIPAR);
printk(KERN_INFO "PCI: Using configuration type 1\n");
request_region(chan->reg_base + SH4_PCIPAR, 8,
"PCI conf1");
return 0;
}
pci_write_reg(chan, P1SEG, SH4_PCIPAR);

if (pci_read_reg(chan, SH4_PCIPAR) == P1SEG) {
pci_write_reg(chan, tmp, SH4_PCIPAR);
printk(KERN_INFO "PCI: Using configuration type 1\n");
request_region(chan->reg_base + SH4_PCIPAR, 8,
"PCI conf1");
return 0;
}

pr_debug("PCI: pci_check_direct failed\n");
pci_write_reg(chan, tmp, SH4_PCIPAR);

printk(KERN_ERR "PCI: %s failed\n", __func__);

return -EINVAL;
}

Expand All @@ -155,16 +152,6 @@ static void __init pci_fixup_ide_bases(struct pci_dev *d)
}
DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_ide_bases);

char * __devinit pcibios_setup(char *str)
{
if (!strcmp(str, "off")) {
pci_probe = 0;
return NULL;
}

return str;
}

int __attribute__((weak)) pci_fixup_pcic(struct pci_channel *chan)
{
/* Nothing to do. */
Expand Down
5 changes: 0 additions & 5 deletions trunk/arch/sh/drivers/pci/ops-sh5.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ static void __init pci_fixup_ide_bases(struct pci_dev *d)
}
DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_ide_bases);

char * __devinit pcibios_setup(char *str)
{
return str;
}

static int sh5pci_read(struct pci_bus *bus, unsigned int devfn, int where,
int size, u32 *val)
{
Expand Down
5 changes: 5 additions & 0 deletions trunk/arch/sh/drivers/pci/pci-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@ void __init pcibios_update_irq(struct pci_dev *dev, int irq)
pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
}

char * __devinit pcibios_setup(char *str)
{
return str;
}

int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma,
enum pci_mmap_state mmap_state, int write_combine)
{
Expand Down

0 comments on commit 8d1c996

Please sign in to comment.