Re: [PATCH 0/4] Atari kernel-in-FastRAM patches, take three

2014-04-04 Thread Finn Thain
On Thu, 3 Apr 2014, Scott Holder wrote: On 4/1/2014 8:23 AM, Finn Thain wrote: It may be possible to boot Linux with MacOS running in 24-bit mode, and ISTR that this leads to a large number of memory chunks. The Penguin documentation says use 32-bit mode (which means installing

Re: [PATCH 0/4] Atari kernel-in-FastRAM patches, take three

2014-04-04 Thread Finn Thain
On Wed, 2 Apr 2014, Michael Schmitz wrote: Hi Finn, It may be possible to boot Linux with MacOS running in 24-bit mode, and ISTR that this leads to a large number of memory chunks. The Penguin The chunk size would still be 16 MB, perhaps? Looking at the Penguin source, findRAM()

Re: [PATCH 1/2] Add correct PLL settings for DragonBall VZ.

2014-04-04 Thread Finn Thain
On Thu, 3 Apr 2014, Geert Uytterhoeven wrote: On Thu, Apr 3, 2014 at 2:41 PM, Greg Ungerer gregungere...@gmail.com wrote: -#ifdef CONFIG_PILOT +#if defined(CONFIG_PILOT) movew #0x2410, 0xf200 /* PLLCR */ +#elif defined(CONFIG_M68VZ328) + movew

Re: [PATCH 1/2] Add correct PLL settings for DragonBall VZ.

2014-04-04 Thread Finn Thain
On Fri, 4 Apr 2014, Daniel Palmer wrote: I doubt there are many people that are attempting to run Linux on Palms or extremely rare development boards but it does seem like it's possible to detect what chip the kernel is booting on from the chip id register. So the kernel could pick the

Re: [PATCH 1/2] Add correct PLL settings for DragonBall VZ.

2014-04-04 Thread Greg Ungerer
On 04/04/14 17:45, Finn Thain wrote: On Thu, 3 Apr 2014, Geert Uytterhoeven wrote: On Thu, Apr 3, 2014 at 2:41 PM, Greg Ungerer gregungere...@gmail.com wrote: -#ifdef CONFIG_PILOT +#if defined(CONFIG_PILOT) movew #0x2410, 0xf200 /* PLLCR */ +#elif

Re: [PATCH 1/2] Add correct PLL settings for DragonBall VZ.

2014-04-04 Thread Greg Ungerer
Hi Daniel, On 04/04/14 13:18, Daniel Palmer wrote: Only slightly related to the patch itself; At the moment you can select to support multiple DragonBall chips in a single kernel but I don't think that'll actually work if the PLL register values are hardcoded like they are at the moment. So I

Re: esp_scsi QTAG in FAS216

2014-04-04 Thread David Miller
From: Tuomas Vainikka tuomas.vaini...@aalto.fi Date: Thu, 12 Sep 2013 18:36:09 +0300 Does anyone have the register descriptions for the FAS216 chip? It would seem that receiving only one byte during reconnect is perfectly normal [1] unless SCSI-2 features are explicitly enabled (which

[PATCH 1/2] m68k: fix some compiler warnings when building for DragonBall

2014-04-04 Thread Daniel Palmer
Signed-off-by: Daniel Palmer danier...@gmail.com --- arch/m68k/kernel/setup_no.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/arch/m68k/kernel/setup_no.c b/arch/m68k/kernel/setup_no.c index 5b16f5d..88c27d9 100644 --- a/arch/m68k/kernel/setup_no.c +++

[PATCH 2/2] m68k: Only allow for one member of the DragonBall family to be selected in Kconfig. The support code for these chips doesn't currently handle support for multiple family

2014-04-04 Thread Daniel Palmer
Signed-off-by: Daniel Palmer danier...@gmail.com --- arch/m68k/Kconfig.cpu | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu index 33013df..1ca7cbe 100644 --- a/arch/m68k/Kconfig.cpu +++ b/arch/m68k/Kconfig.cpu @@