[PATCH v3] mpc5200: support for the MAN mpc5200 based board mucmc52

2009-10-06 Thread Heiko Schocher
- serial Console on PSC1 - 64MB SDRAM - MTD CFI Flash - Ethernet FEC - IDE support Signed-off-by: Heiko Schocher --- - based on: git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git next - checked with: $ ./scripts/checkpatch.pl 0002-mpc5200-support-for-the-MAN-mpc5200-based-board-

[PATCH v3] mpc5200: support for the MAN mpc5200 based board uc101

2009-10-06 Thread Heiko Schocher
- serial Console on PSC1 - 64MB SDRAM - MTD CFI Flash - Ethernet FEC - I2C with PCF8563 and Temp. Sensor ADM9240 - IDE support Signed-off-by: Heiko Schocher --- - based on: git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git next - checked with: $ ./scripts/checkpatch.pl 0001-mpc5

Re: [RFC PATCH 00/12] Merge common OpenFirmware device tree code

2009-10-06 Thread Julian Calaby
On Wed, Oct 7, 2009 at 14:49, Grant Likely wrote: > On Tue, Oct 6, 2009 at 10:29 PM, Grant Likely > wrote: >> >> So here goes.  I've begun the work to merge and clean up the OF device >> tree handling code and this is my first set of patches.  Not fully >> tested yet, but I'm getting them out to

Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation

2009-10-06 Thread Benjamin Herrenschmidt
On Tue, 2009-10-06 at 22:30 -0600, Grant Likely wrote: > --- /dev/null > +++ b/include/linux/of_fdt.h > @@ -0,0 +1,30 @@ > +/* > + * Definitions for working with the Flattened Device Tree data format > + * > + * Copyright (C) 1996-2005 Paul Mackerras. > + * > + * Updates for PPC64 by Peter Bergner

Re: [RFC PATCH 05/12] of: add common header for flattened device tree representation

2009-10-06 Thread Stephen Rothwell
Hi Grant, Just first obvious thing: On Tue, 06 Oct 2009 22:30:59 -0600 Grant Likely wrote: > > diff --git a/arch/microblaze/include/asm/prom.h > b/arch/microblaze/include/asm/prom.h > index 64e8b3a..5f461f0 100644 > --- a/arch/microblaze/include/asm/prom.h > +++ b/arch/microblaze/include/asm/p

Re: [RFC PATCH 00/12] Merge common OpenFirmware device tree code

2009-10-06 Thread Grant Likely
On Tue, Oct 6, 2009 at 10:29 PM, Grant Likely wrote: > Well, I've got to start somewhere... > > So here goes.  I've begun the work to merge and clean up the OF device > tree handling code and this is my first set of patches.  Not fully > tested yet, but I'm getting them out to the lists so that I

[RFC PATCH 12/12] of: merge of_find_all_nodes() implementations

2009-10-06 Thread Grant Likely
Merge common code between Microblaze and PowerPC, and make it available to Sparc Signed-off-by: Grant Likely --- arch/microblaze/kernel/prom.c | 23 --- arch/powerpc/kernel/prom.c| 23 --- drivers/of/base.c | 26 +

[RFC PATCH 11/12] of: merge other miscellaneous prototypes

2009-10-06 Thread Grant Likely
Merge common prototypes used by Microblaze and PowerPC Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 12 arch/powerpc/include/asm/prom.h| 14 -- include/linux/of_fdt.h | 13 + 3 files changed, 13 insertions(+), 26

[RFC PATCH 10/12] of: merge of_*_flat_dt*() functions

2009-10-06 Thread Grant Likely
Merge common flattened device tree code between Microblaze and PowerPC Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 11 --- arch/powerpc/include/asm/prom.h| 10 -- include/linux/of_fdt.h | 14 ++ 3 files changed, 14 inser

[RFC PATCH 09/12] of: merge of_node_get(), of_node_put() and of_find_all_nodes()

2009-10-06 Thread Grant Likely
Merge common code between Sparc, PowerPC and Microblaze. Sparc differs in the implementation at this point, so this patch uses a #ifdef to handle sparc differently for now. The merging of implementations will occur in a later patch Signed-off-by: Grant Likely --- arch/microblaze/include/asm/p

[RFC PATCH 08/12] of: merge of_read_number() an of_read_ulong()

2009-10-06 Thread Grant Likely
Merge common code between Microblaze and PowerPC Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 12 arch/powerpc/include/asm/prom.h| 20 include/linux/of.h | 23 +++ 3 files changed, 23 inserti

[RFC PATCH 07/12] of: merge of_node_*_flag() and set_node_proc_entry()

2009-10-06 Thread Grant Likely
Merge common code between PowerPC and Microblaze Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 16 arch/powerpc/include/asm/prom.h| 17 - include/linux/of.h | 16 3 files changed, 16 insertions(+)

[RFC PATCH 06/12] of: merge struct boot_param_header from Microblaze and PowerPC

2009-10-06 Thread Grant Likely
Merge common code for working with Flattened Device Tree data structure Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 30 -- arch/powerpc/include/asm/prom.h| 31 --- include/linux/of_fdt.h | 30

[RFC PATCH 05/12] of: add common header for flattened device tree representation

2009-10-06 Thread Grant Likely
Add a common header file for working with the flattened device tree data structure and merge the shared data tags used by Microblaze and PowerPC Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 12 +--- arch/powerpc/include/asm/prom.h| 12 +--- includ

[RFC PATCH 04/12] of: Move OF_IS_DYNAMIC and OF_MARK_DYNAMIC macros to of.h

2009-10-06 Thread Grant Likely
Merge of common code duplicated between Sparc, PowerPC and Microblaze Signed-off-by: Grant Likely --- arch/sparc/include/asm/prom.h |3 --- include/linux/of.h|3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/sparc/include/asm/prom.h b/arch/sparc/inc

[RFC PATCH 03/12] of: merge struct device_node

2009-10-06 Thread Grant Likely
Merge of common code duplicated between Sparc, PowerPC and Microblaze Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 20 arch/powerpc/include/asm/prom.h| 20 arch/sparc/include/asm/prom.h | 24 ---

[RFC PATCH 02/12] of: merge phandle, ihandle and struct property

2009-10-06 Thread Grant Likely
Merge of common code duplicated between Sparc, PowerPC and Microblaze Signed-off-by: Grant Likely --- arch/microblaze/include/asm/prom.h | 10 -- arch/powerpc/include/asm/prom.h| 12 arch/sparc/include/asm/prom.h | 12 include/linux/of.h

[RFC PATCH 01/12] of: Rework linux/of.h and asm/prom.h include ordering

2009-10-06 Thread Grant Likely
In preparation to prune things out of the Sparc, PowerPC and Microblaze asm/prom.h files, change the #include statements to ensure that even if asm/prom.h is included first, linux/of.h gets to determine the order in which files are processed. This patch adds a #include to each of the prom.h files

[RFC PATCH 00/12] Merge common OpenFirmware device tree code

2009-10-06 Thread Grant Likely
Well, I've got to start somewhere... So here goes. I've begun the work to merge and clean up the OF device tree handling code and this is my first set of patches. Not fully tested yet, but I'm getting them out to the lists so that I can start responding to comments and collecting acks. This fir

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Benjamin Herrenschmidt
Allright, did a bit of reading of doco and code.. Doco isn't totally clear though. At some stage, it -hints- that in case of a TLB "error" (match on EA/ASID but incorrect protection/valid/changed/...) the offending TLB entry is automatically invalidated. Do you know if that is correct ? I would h

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Benjamin Herrenschmidt
> After some more thinking I don't think I do TLB Miss/Error correctly yet. > The problem is ACCESSED. Since I don't know if load or store in TLB Miss > I must choose: > - Assume load and do what you do above. That will incorrectly >set ACCESSED on store ops when mapped as RO(plus whatever mo

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 02:34:15: > > On Tue, 2009-10-06 at 01:35 +0200, Joakim Tjernlund wrote: > > > > > Well, if the HW has the ability to enforce trap when store with ! > > DIRTY, > > > > Yes, provided that the kernel invalidates the TLB too so the next > > access > > will p

can't access memory above 496M

2009-10-06 Thread Rossetti, Alan
We have an embedded prouct using 8270 based on pq2fads with MontaVista 4.0.1, kernel 2.6.10. We recently had a need to increase memory. We can populate 1x256M, 2x256M, 1x512M or 2X512M. In all configurations with at least 512M, it we set memory size to 496M or greater system crashes on boot up w

Re: [v7 PATCH 0/7]: cpuidle/x86/POWER: Cleanup idle power management code in x86, cleanup drivers/cpuidle/cpuidle.c and introduce cpuidle to POWER.

2009-10-06 Thread Peter Zijlstra
On Tue, 2009-10-06 at 22:05 +0530, Arun R Bharadwaj wrote: > Also, the per-cpu nature of registration/unregistration of cpuidle > has been maintained as ACPI needs this. Right, so can't we ditch that and have acpi default to the lowest common C-state and warn when various cpus report different C-

Re: [PATCH] [V2] USB: Add support for Xilinx USB host controller

2009-10-06 Thread Greg KH
On Tue, Oct 06, 2009 at 11:07:32AM -0600, Julie Zhu wrote: > Hi, Greg K-H, > > I think we have put in all the suggested changes. Are you planning to > put it into your tree? Or is there something we need to do? I will queue it up in my tree. thanks, greg k-h

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Joakim Tjernlund
> > Benjamin Herrenschmidt wrote on 06/10/2009 > 08:45:47: > > > > On Tue, 2009-10-06 at 08:15 +0200, Joakim Tjernlund wrote: > > > > > Yes, I would too but TLB Miss knows nothing about load/store, protection > > > etc. > > > because DSISR isn't set. So I cannot see any other way than the TLB Er

RE: [PATCH] [V2] USB: Add support for Xilinx USB host controller

2009-10-06 Thread Julie Zhu
Hi, Greg K-H, I think we have put in all the suggested changes. Are you planning to put it into your tree? Or is there something we need to do? Thank you, Julie. > > -Original Message- > > From: Julie Zhu [mailto:julie@xilinx.com] > > Sent: Monday, September 21, 2009 4:08 PM > > To: J

Re: [v7 PATCH 0/7]: cpuidle/x86/POWER: Cleanup idle power management code in x86, cleanup drivers/cpuidle/cpuidle.c and introduce cpuidle to POWER.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: > Hi > > Please consider this for inclusion into the testing tree. > > This patchset introduces cpuidle infrastructure to POWER, prototyping > for pSeries, and also does a major refactoring of current x86 idle > power management and a cleanup of cpuidle

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Olof Johansson
On Tue, Oct 06, 2009 at 09:11:22PM +1100, Benjamin Herrenschmidt wrote: > On Tue, 2009-10-06 at 11:16 +0200, Romain Goyet wrote: > > Hi there, > > > > > > I have this Quad G5 here, running GentooPPC64. Runs fine. Had a hard > > time getting it to boot without a screen attached, but I eventually

Re: [PATCH] pasemi_mac: ethtool set settings support

2009-10-06 Thread Olof Johansson
On Mon, Oct 05, 2009 at 05:31:24PM +0400, Valentine Barshak wrote: > Add ethtool set settings to pasemi_mac_ethtool. > > Signed-off-by: Valentine Barshak Acked-by: Olof Johansson ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lis

Re: [PATCH] pasemi_mac: ethtool get settings fix

2009-10-06 Thread Olof Johansson
Weird, I see my address in the to: line but I never got a copy in my inbox. On Mon, Oct 05, 2009 at 05:27:56PM +0400, Valentine Barshak wrote: > Not all pasemi mac interfaces can have a phy attached. > For example, XAUI has no phy and phydev is NULL for it. > In this case ethtool get settings caus

[PATCH] powerpc: pasemi_defconfig update

2009-10-06 Thread Olof Johansson
pasemi_defconfig hasn't been updated for a year. Mostly a refresh of defaults, but this also disables 64K pages. Signed-off-by: Olof Johansson diff --git a/arch/powerpc/configs/pasemi_defconfig b/arch/powerpc/configs/pasemi_defconfig index 4f8681c..20ba0cf 100644 --- a/arch/powerpc/configs/p

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 08:45:47: > > On Tue, 2009-10-06 at 08:15 +0200, Joakim Tjernlund wrote: > > > Yes, I would too but TLB Miss knows nothing about load/store, protection > > etc. > > because DSISR isn't set. So I cannot see any other way than the TLB Error > > way. > > H

[v7 PATCH 7/7]: pSeries: implement pSeries processor idle module.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: This patch creates arch/powerpc/platforms/pseries/processor_idle.c, which implements the cpuidle infrastructure for pseries. It implements a pseries_cpuidle_loop() which would be the main idle loop called from cpu_idle(). It makes decision of entering eit

[v7 PATCH 6/7]: POWER: add a default_idle idle loop for POWER.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: In arch/powerpc/kernel/idle.c create a default_idle() routine by moving the failover condition of the cpu_idle() idle loop. This is needed by cpuidle infrastructure to call default_idle when other idle routines are not yet registered. Functionality remain

[v7 PATCH 5/7]: pSeries/cpuidle: remove dedicate/shared idle loops, which will be moved to arch/powerpc/platforms/pseries/processor_idle.c.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: This patch removes the routines, pseries_shared_idle_sleep and pseries_dedicated_idle_sleep, since this is implemented as a part of arch/powerpc/platform/pseries/processor_idle.c Also, similar to x86, call cpuidle_idle_call from cpu_idle() idle loop inst

[v7 PATCH 4/7]: POWER: enable cpuidle for POWER.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: This patch enables the cpuidle option in Kconfig for pSeries. Currently cpuidle infrastructure is enabled only for x86 and ARM. This code is almost completely borrowed from x86 to enable cpuidle for pSeries. Signed-off-by: Arun R Bharadwaj --- arch/po

[v7 PATCH 3/7]: x86: refactor x86 idle power management code and remove all instances of pm_idle.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: This patch cleans up x86 of all instances of pm_idle. pm_idle which was earlier called from cpu_idle() idle loop is replaced by cpuidle_idle_call. x86 also registers to cpuidle when the idle routine is selected, by populating the cpuidle_device data str

[v7 PATCH 2/7]: cpuidle: implement a list based approach to register a set of idle routines.

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: Implement a list based registering mechanism for architectures which have multiple sets of idle routines which are to be registered. Currently, in x86 it is done by merely setting pm_idle = idle_routine and managing this pm_idle pointer is messy. To giv

[v7 PATCH 0/7]: cpuidle/x86/POWER: Cleanup idle power management code in x86, cleanup drivers/cpuidle/cpuidle.c and introduce cpuidle to POWER.

2009-10-06 Thread Arun R Bharadwaj
Hi Please consider this for inclusion into the testing tree. This patchset introduces cpuidle infrastructure to POWER, prototyping for pSeries, and also does a major refactoring of current x86 idle power management and a cleanup of cpuidle infrastructure. Earlier discussions on the same can be f

[v7 PATCH 1/7]: cpuidle: cleanup drivers/cpuidle/cpuidle.c

2009-10-06 Thread Arun R Bharadwaj
* Arun R Bharadwaj [2009-10-06 20:54:21]: This patch cleans up drivers/cpuidle/cpuidle.c Earlier cpuidle assumed pm_idle as the default idle loop. Break that assumption and make it more generic. cpuidle_idle_call() which is the main idle loop of cpuidle is to be called by architectures which have

Re: [PATCH] powerpc: tracing: Add powerpc tracepoints for interrupt entry and exit

2009-10-06 Thread Steven Rostedt
On Tue, 2009-10-06 at 15:05 +1100, Anton Blanchard wrote: > Hi Steve, > > > I think this may do better in a file like: > > > > arch/powerpc/kernel/trace.h > > > > You can look at the sample code and Makefile in samples/trace_events/ > > that shows how to make it work outside the include/trace/ev

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 13:06:26: > > On Tue, 2009-10-06 at 12:58 +0200, Joakim Tjernlund wrote: > > > Here I don't care if err. insn will be 0 if it fails and the following > > if will be false > > I'd rather you use get_user() so it does access_ok(). > > Else, you can probably

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Michel Dänzer
On Tue, 2009-10-06 at 13:44 +0200, Romain Goyet wrote: > > Acutally I didn't figure it out by myself : > http://saintaardvarkthecarpeted.com/blog/archive/2005/02/THE_WINE_OF_BOOT.html > > > However, here's my 2 cents about it : > 1/ The fix (removing "screen" line in ofboot.b on yaboot partitio

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Romain Goyet
Hi again Benjamin ! That's allright, I'll ping you next month ! Thanks for the help ! - Romain On Tue, Oct 6, 2009 at 12:51 PM, Benjamin Herrenschmidt < b...@kernel.crashing.org> wrote: > On Tue, 2009-10-06 at 12:31 +0200, Romain Goyet wrote: > > Hi Benjamin ! > > > > > > Actually I saw a p

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Romain Goyet
Hi Michel :-) Acutally I didn't figure it out by myself : http://saintaardvarkthecarpeted.com/blog/archive/2005/02/THE_WINE_OF_BOOT.html However, here's my 2 cents about it : 1/ The fix (removing "screen" line in ofboot.b on yaboot partition) doesn't work with all versions of the yaboot binary. Wo

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 13:06:26: > From: > > Benjamin Herrenschmidt > > To: > > Joakim Tjernlund > > Cc: > > "linuxppc-...@ozlabs.org" , Rex Feany > , Scott Wood > > Date: > > 06/10/2009 13:06 > > Subject: > > Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes > > On Tue, 2009-10-

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Romain Goyet
Hi Benjamin ! Actually I saw a post where you mentioned this tool on Google. I then searched it for like an hour or so, but really couldn't find it. That's why I ended up posting on this mailing list. I'm really glad you're on it by the way ! Anyway, like I said : I really looked for this tool, b

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Benjamin Herrenschmidt
On Tue, 2009-10-06 at 12:58 +0200, Joakim Tjernlund wrote: > Here I don't care if err. insn will be 0 if it fails and the following > if will be false I'd rather you use get_user() so it does access_ok(). Else, you can probably manufacture some code that will make the kernel access some MMIO reg

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Joakim Tjernlund
> > > > > No, use get_user() not __get_user() or if you use the later, also use > > > access_ok(), and test the result in case it errors (if it does, you > > > probably want to just goto bad access and SEGV). > > > > OK, lets see what this gives us: > > Hrm... did you change anything ? :-) Yes, se

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Michel Dänzer
On Tue, 2009-10-06 at 11:16 +0200, Romain Goyet wrote: > > I have this Quad G5 here, running GentooPPC64. Runs fine. Had a hard > time getting it to boot without a screen attached, but I eventually > managed to (yaboot was the culprit). Out of curiosity, how did you solve this? I still have an

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Benjamin Herrenschmidt
On Tue, 2009-10-06 at 12:31 +0200, Romain Goyet wrote: > Hi Benjamin ! > > > Actually I saw a post where you mentioned this tool on Google. I > then searched it for like an hour or so, but really couldn't find it. > That's why I ended up posting on this mailing list. I'm really glad > you're on

Re: SMU-base PowerMac and server_mode

2009-10-06 Thread Benjamin Herrenschmidt
On Tue, 2009-10-06 at 11:16 +0200, Romain Goyet wrote: > Hi there, > > > I have this Quad G5 here, running GentooPPC64. Runs fine. Had a hard > time getting it to boot without a screen attached, but I eventually > managed to (yaboot was the culprit). However, this machine is > SMU-based, and I

SMU-base PowerMac and server_mode

2009-10-06 Thread Romain Goyet
Hi there, I have this Quad G5 here, running GentooPPC64. Runs fine. Had a hard time getting it to boot without a screen attached, but I eventually managed to (yaboot was the culprit). However, this machine is SMU-based, and I couldn't find a way to enable the equivalent of the PMU's "server_mode"

XILINX memory layout <-> physical memory

2009-10-06 Thread Thomas Rinder
Betreff: XILINX memory layout <-> physical memory Hello, I'm newbie in PPCLinux, don't know I'm right here. I made a ports to an AVNET FX12 minimodul and custom board (FX40/FX60) based on linuxppc found on http://git.xilinx.com/ (ppc405 processor). All works fine, but I can use/configure only t

XILINX memory layout <-> physical memory

2009-10-06 Thread Thomas Rinder
Hello, I'm newbie in PPCLinux, don't know I'm right here. I made a ports to an AVNET FX12 minimodul and custom board (FX40/FX60) based on linuxppc found on http://git.xilinx.com/ (ppc405 processor). All works fine, but I can use/configure only the half memory size available in the dts (for insta

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Benjamin Herrenschmidt
> > No, use get_user() not __get_user() or if you use the later, also use > > access_ok(), and test the result in case it errors (if it does, you > > probably want to just goto bad access and SEGV). > > OK, lets see what this gives us: Hrm... did you change anything ? :-) Ben. > diff --git a/a

Re: [PATCH 0/6] PowerPc 8xx TLB/MMU fixes

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 03:52:15: > > \ > > So how does this look? Does it change anything? > > It should as the previous way was way off :( > > > > diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c > > index c33c6de..08a392f 100644 > > --- a/arch/powerpc/mm/fault.c

Re: [PATCH v2] mpc5200: support for the MAN mpc5200 based board uc101

2009-10-06 Thread Wolfram Sang
> Hmm.. currently I prefer to remove it, because it is not a uc101 special > wdt driver. When this wdt driver go in mainline, it is easy to readd it > to this board support. Great, another one interested in a mainline GPIO-WDT-driver :) I'll check again what happened last time and summarize it la

Re: [PATCH 3/6] 8xx: get rid of _PAGE_HWWRITE dependency in MMU.

2009-10-06 Thread Joakim Tjernlund
Benjamin Herrenschmidt wrote on 06/10/2009 08:45:47: > > On Tue, 2009-10-06 at 08:15 +0200, Joakim Tjernlund wrote: > > > Yes, I would too but TLB Miss knows nothing about load/store, protection > > etc. > > because DSISR isn't set. So I cannot see any other way than the TLB Error > > way. > > H