/* * Copyright IBM Corporation, 2007 * Josh Boyer <jwboyer@linux.vnet.ibm.com> * * Based on ebony wrapper: * Copyright 2007 David Gibson, IBM Corporation. * * Clocking code based on code by: * Stefan Roese <sr@denx.de> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 of the License */ #include <stdarg.h> #include <stddef.h> #include "types.h" #include "elf.h" #include "string.h" #include "stdio.h" #include "page.h" #include "ops.h" #include "dcr.h" #include "4xx.h" #include "44x.h" static u8 *bamboo_mac0, *bamboo_mac1;
static void bamboo_fixups(void) { unsigned long sysclk = 33333333; ibm440ep_fixup_clocks(sysclk, 11059200, 25000000); ibm4xx_sdram_fixup_memsize(); ibm4xx_quiesce_eth((u32 *)0xef600e00, (u32 *)0xef600f00); dt_fixup_mac_address_by_alias("ethernet0", bamboo_mac0); dt_fixup_mac_address_by_alias("ethernet1", bamboo_mac1); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Josh Boyer | 44 | 80.00% | 2 | 40.00% |
David Gibson | 8 | 14.55% | 1 | 20.00% |
Benjamin Herrenschmidt | 3 | 5.45% | 2 | 40.00% |
Total | 55 | 100.00% | 5 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Josh Boyer | 40 | 97.56% | 2 | 66.67% |
David Gibson | 1 | 2.44% | 1 | 33.33% |
Total | 41 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Josh Boyer | 126 | 91.30% | 2 | 33.33% |
David Gibson | 9 | 6.52% | 2 | 33.33% |
Benjamin Herrenschmidt | 3 | 2.17% | 2 | 33.33% |
Total | 138 | 100.00% | 6 | 100.00% |