The patch titled powerpc: Fix boot on eMac has been removed from the -mm tree. Its filename is powerpc-fix-boot-on-emac.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: powerpc: Fix boot on eMac From: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Prevent calling of some platform functions on the clock chips of the eMac as it seems to cause it to lockup at boot. For now, add a quirk to prevent that from happening. Later, I might find out what's wrong and fix it but that doesn't seem to be important as the machine appear to work fine without running those. It's possible that Darwin doesn't run them. Signed-off-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Nathan Pilatzke <nathanpilatzke@xxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Jean Delvare <khali@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/powerpc/platforms/powermac/low_i2c.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff -puN arch/powerpc/platforms/powermac/low_i2c.c~powerpc-fix-boot-on-emac arch/powerpc/platforms/powermac/low_i2c.c --- devel/arch/powerpc/platforms/powermac/low_i2c.c~powerpc-fix-boot-on-emac 2006-05-30 21:24:55.000000000 -0700 +++ devel-akpm/arch/powerpc/platforms/powermac/low_i2c.c 2006-05-30 21:24:55.000000000 -0700 @@ -1157,6 +1157,7 @@ EXPORT_SYMBOL_GPL(pmac_i2c_xfer); /* some quirks for platform function decoding */ enum { pmac_i2c_quirk_invmask = 0x00000001u, + pmac_i2c_quirk_skip = 0x00000002u, }; static void pmac_i2c_devscan(void (*callback)(struct device_node *dev, @@ -1172,6 +1173,15 @@ static void pmac_i2c_devscan(void (*call /* XXX Study device-tree's & apple drivers are get the quirks * right ! */ + /* Workaround: It seems that running the clockspreading + * properties on the eMac will cause lockups during boot. + * The machine seems to work fine without that. So for now, + * let's make sure i2c-hwclock doesn't match about "imic" + * clocks and we'll figure out if we really need to do + * something special about those later. + */ + { "i2c-hwclock", "imic5002", pmac_i2c_quirk_skip }, + { "i2c-hwclock", "imic5003", pmac_i2c_quirk_skip }, { "i2c-hwclock", NULL, pmac_i2c_quirk_invmask }, { "i2c-cpu-voltage", NULL, 0}, { "temp-monitor", NULL, 0 }, @@ -1198,6 +1208,8 @@ static void pmac_i2c_devscan(void (*call if (p->compatible && !device_is_compatible(np, p->compatible)) continue; + if (p->quirks & pmac_i2c_quirk_skip) + break; callback(np, p->quirks); break; } _ Patches currently in -mm which might be from benh@xxxxxxxxxxxxxxxxxxx are origin.patch macintosh-mangle-caps-lock-events-on-adb-keyboards.patch via-pmu-add-input-device.patch via-pmu-add-input-device-tidy.patch input-powermac-cleanup-of-mac_hid-and-support-for-ctrlclick-and-commandclick.patch input-powermac-cleanup-of-mac_hid-and-support-for-ctrlclick-and-commandclick-update.patch git-netdev-all.patch powerpc-kbuild-warning-fix.patch pmf_register_irq_client-gives-sleep-with-locks-held-warning.patch gregkh-usb-usb-serial-mos7720-powerpc-wrokaround.patch add-poisonh-and-patch-primary-users.patch x86-powerpc-make-hardirq_ctx-and-softirq_ctx-__read_mostly.patch rewritten-backlight-infrastructure-for-portable-apple-computers.patch rewritten-backlight-infrastructure-for-portable-apple-computers-fix.patch apple-motion-sensor-driver.patch radeonfb-powerdrain-issue-on-ibm-thinkpads-and-suspend-to-d2.patch genirq-add-chip-eoi-fastack-fasteoi.patch lock-validator-add-per_cpu_offset-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html