[PATCH/RFC] powerpc: Add Efika platform support
Benjamin Herrenschmidt
benh at kernel.crashing.org
Thu Nov 2 09:19:06 EST 2006
On Wed, 2006-11-01 at 21:29 +0100, Nicolas DET wrote:
> +
> +static void efika_show_cpuinfo(struct seq_file *m)
> +{
> + struct device_node *root;
> + const char *revision = NULL;
> + const char *codegendescription = NULL;
> + const char *codegenvendor = NULL;
> +
> + root = of_find_node_by_path("/");
> + if (root) {
> + revision = get_property(root, "revision", NULL);
> + codegendescription =
> + get_property(root, "CODEGEN,description", NULL);
> + codegenvendor = get_property(root, "CODEGEN,vendor", NULL);
> + }
> +
> + if (codegendescription)
> + seq_printf(m, "machine\t\t: %s\n", codegendescription);
> + else
> + seq_printf(m, "machine\t\t: Efika\n");
> +
> + if (revision)
> + seq_printf(m, "revision\t: %s\n", revision);
> +
> + if (codegenvendor)
> + seq_printf(m, "vendor\t\t: %s\n", codegenvendor);
+ of_node_put(root);
> +
> +static void __init efika_init_IRQ(void)
> +{
> + mpc52xx_init_irq();
> +}
Ya pas moyen que mpc52xx_init_irq() ait le bon prototype pour que tu le
colle directement dans ppc_md. ?
> +
> + ISA_DMA_THRESHOLD = ~0L;
> + DMA_MODE_READ = 0x44;
> + DMA_MODE_WRITE = 0x48;
Ca viens de CHRP ca ? Je suis pas sur que ca soit super utile... mais
bon, ca mange pas de pain.. Au cas ou qqun colle un southbridge ISA sur
le bus PCI :)
> +void __init efika_pcisetup(void)
> +{
> + const int *bus_range;
> + int len;
> + struct pci_controller *hose;
> + struct device_node *root;
> + struct device_node *pcictrl;
> +
> + root = of_find_node_by_path("/");
> + if (root == NULL) {
> + printk(KERN_WARNING EFIKA_PLATFORM_NAME
> + ": Unable to find the root node\n");
> + return;
> + }
> +
> + for (pcictrl = NULL;;) {
> + pcictrl = of_get_next_child(root, pcictrl);
> + if ((pcictrl == NULL) || (strcmp(pcictrl->name, "pci") == 0))
> + break;
> + }
> +
> + if (pcictrl == NULL) {
> + printk(KERN_WARNING EFIKA_PLATFORM_NAME
> + ": Unable to find the PCI bridge node\n");
> + return;
> + }
> +
> + of_node_put(pcictrl);
> + of_node_put(root);
Euh... non... tu fait pas of_node_put(pcictrl) avant de t'en servir...
tu fait ca quand tu as fini. Ca veut dire probablement changer test
"return" en "goto bail;" ou un truc du genre.
> + if (bus_range[1] == bus_range[0])
> + printk(KERN_INFO EFIKA_PLATFORM_NAME ": PCI bus %d",
> + bus_range[0]);
> + else
> + printk(KERN_INFO EFIKA_PLATFORM_NAME ": PCI buses %d..%d",
> + bus_range[0], bus_range[1]);
> + printk(" controlled by %s", pcictrl->full_name);
> + printk("\n");
You really need the above printk's ?
> + hose = pcibios_alloc_controller();
> + if (!hose) {
> + printk(KERN_WARNING EFIKA_PLATFORM_NAME
> + ": Can't allocate PCI controller structure for %s\n",
> + pcictrl->full_name);
> + return;
> + }
> +
> + hose->arch_data = pcictrl;
Et ici, tu garde une reference, donc to fait
hose->arch_data = of_node_get(pcictrl);
> + hose->first_busno = bus_range[0];
> + hose->last_busno = bus_range[1];
> + hose->ops = &rtas_pci_ops;
> +
> + pci_process_bridge_OF_ranges(hose, pcictrl, 0);
> +}
Le reste est bon.
On y est presque ! :)
Ben.
More information about the Linuxppc-embedded
mailing list