Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42222
b: refs/heads/master
c: 8681087
h: refs/heads/master
v: v3
  • Loading branch information
Benjamin Herrenschmidt authored and Paul Mackerras committed Dec 4, 2006
1 parent 5dc1c2d commit a1493fd
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 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: 12d04eef927bf61328af2c7cbe756c96f98ac3bf
refs/heads/master: 868108784ccf0add6ac593bfbc2eb5a0804af48d
37 changes: 34 additions & 3 deletions trunk/arch/powerpc/platforms/cell/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <linux/console.h>
#include <linux/mutex.h>
#include <linux/memory_hotplug.h>
#include <linux/notifier.h>

#include <asm/mmu.h>
#include <asm/processor.h>
Expand Down Expand Up @@ -82,10 +83,41 @@ static void cell_progress(char *s, unsigned short hex)
printk("*** %04x : %s\n", hex, s ? s : "");
}

static int cell_of_bus_notify(struct notifier_block *nb, unsigned long action,
void *data)
{
struct device *dev = data;

if (action != BUS_NOTIFY_ADD_DEVICE)
return 0;

/* For now, we just use the PCI DMA ops for everything, though
* we'll need something better when we have a real iommu
* implementation.
*/
dev->archdata.dma_ops = pci_dma_ops;

return 0;
}

static struct notifier_block cell_of_bus_notifier = {
.notifier_call = cell_of_bus_notify
};


static int __init cell_publish_devices(void)
{
if (machine_is(cell))
of_platform_bus_probe(NULL, NULL, NULL);
if (!machine_is(cell))
return 0;

/* Register callbacks on OF platform device addition/removal
* to handle linking them to the right DMA operations
*/
bus_register_notifier(&of_platform_bus_type, &cell_of_bus_notifier);

/* Publish OF platform devices for southbridge IOs */
of_platform_bus_probe(NULL, NULL, NULL);

return 0;
}
device_initcall(cell_publish_devices);
Expand Down Expand Up @@ -154,7 +186,6 @@ static void __init cell_setup_arch(void)
#ifdef CONFIG_SMP
smp_init_cell();
#endif

/* init to some ~sane value until calibrate_delay() runs */
loops_per_jiffy = 50000000;

Expand Down

0 comments on commit a1493fd

Please sign in to comment.