Re: [uClinux-dev] [PATCH] m68knommu: Fix typos in Coldfire 5272 DMA debug code

2017-02-10 Thread Geert Uytterhoeven
Hi Greg, On Fri, Feb 10, 2017 at 1:50 PM, Greg Ungerer <g...@linux-m68k.org> wrote: > On 09/02/17 22:44, Geert Uytterhoeven wrote: >> If DEBUG_DMA is defined: >> >> include/asm/dma.h: In function ‘set_dma_mode’: >> include/asm/dma.h:392: err

[uClinux-dev] [PATCH] m68knommu: Fix typos in Coldfire 5272 DMA debug code

2017-02-09 Thread Geert Uytterhoeven
it appears in.) include/asm/dma.h: In function ‘set_dma_addr’: include/asm/dma.h:423: error: ‘dmawp’ undeclared (first use in this function) Reported-by: kbuild test robot <fengguang...@intel.com> Signed-off-by: Geert Uytterhoeven <ge...@linux-m68k.org> --- arch/m68k/include/a

Re: [uClinux-dev] [PATCH] serial: Remove 68328 driver

2015-12-18 Thread Geert Uytterhoeven
info->irq = uart_irqs[i]; > - info->custom_divisor = 16; > - info->x_char = 0; > - info->line = i; > - info->is_cons = 1; /* Means shortcuts work */ > - > - printk("%s%d at 0x%08x (irq = %d)", seria

Re: [uClinux-dev] m68k compile issue with 4.0.5

2015-06-16 Thread Geert Uytterhoeven
grep vma_fput tells me there's no vma_fput in the kernel sources? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking

Re: [uClinux-dev] [PATCH] m68k: Add missing ioport_unmap()

2014-09-16 Thread Geert Uytterhoeven
Hi Greg, On Tue, Sep 16, 2014 at 8:25 AM, Greg Ungerer g...@uclinux.org wrote: On 15/09/14 17:36, Geert Uytterhoeven wrote: On Mon, Sep 15, 2014 at 3:07 AM, Greg Ungerer g...@uclinux.org wrote: On 14/09/14 19:45, Geert Uytterhoeven wrote: drivers/net/ethernet/cirrus/cs89x0.c: In function

Re: [uClinux-dev] [PATCH] m68k: Add missing ioport_unmap()

2014-09-15 Thread Geert Uytterhoeven
Hi Greg, On Mon, Sep 15, 2014 at 3:07 AM, Greg Ungerer g...@uclinux.org wrote: On 14/09/14 19:45, Geert Uytterhoeven wrote: drivers/net/ethernet/cirrus/cs89x0.c: In function ‘cs89x0_ioport_probe’: drivers/net/ethernet/cirrus/cs89x0.c:1629: error: implicit declaration of function

[uClinux-dev] [PATCH] m68k: Add missing ioport_unmap()

2014-09-14 Thread Geert Uytterhoeven
at it (both copied from asm-generic). Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/include/asm/io_mm.h | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/arch/m68k/include/asm/io_mm.h b/arch/m68k/include/asm/io_mm.h index ffdf54f44bc6..8955b40a5dc4

Re: [uClinux-dev] qemu/m68k

2014-08-22 Thread Geert Uytterhoeven
,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

Re: [uClinux-dev] v3.15-rc1 slab allocator broken on m68knommu (coldfire)

2014-04-16 Thread Geert Uytterhoeven
) + unsigned int idx, freelist_idx_t val) { ((freelist_idx_t *)(page-freelist))[idx] = val; } then v3.15-rc1 will boot using the slab allocator. Is idx ever larger than 255? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven

Re: [uClinux-dev] coldfire M5272, linux-2.6.x

2014-04-10 Thread Geert Uytterhoeven
is probably not working. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer

Re: [uClinux-dev] Accessing SPI

2014-01-29 Thread Geert Uytterhoeven
to the interface at low levels. Please see the Linux kernel documentation, with examples: Documentation/spi/spidev Documentation/spi/spidev_fdx.c Documentation/spi/spidev_test.c Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond

Re: [uClinux-dev] Having troubles in updating MTD partitions

2013-11-20 Thread Geert Uytterhoeven
on /dev/root 5824 5824 0 100% / 5824 is the usable size of the file system on mtdblock3, i.e. after subtracting the overhead for file system bookkeeping. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge

[uClinux-dev] [FOSDEM] [CFP] Embedded and mobile devroom

2013-11-03 Thread Geert Uytterhoeven
Schrijver Geert Uytterhoeven Thomas Petazzoni Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking

Re: [uClinux-dev] Excluding one of n Cores

2013-07-30 Thread Geert Uytterhoeven
}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

[uClinux-dev] [PATCH] m68knommu: Mark functions only called from setup_arch() __init

2013-07-01 Thread Geert Uytterhoeven
Some functions that are only called (indirectly) from setup_arch() lack __init annotations. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- This is sort of a v2 of m68knommu: Mark config_BSP() __init, adding parse_uboot_commandline(), init_hardware(), m360_cpm_reset() arch/m68k

Re: [uClinux-dev] [PATCH] arch: m68k: include: asm: define 'VM_DATA_DEFAULT_FLAGS' no matter whether has 'NOMMU' or not.

2013-06-29 Thread Geert Uytterhoeven
, so I'm adding the uClinux list. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer

Re: [uClinux-dev] [PATCH] m68knommu: Mark config_BSP() __init

2013-06-27 Thread Geert Uytterhoeven
On Thu, Jun 27, 2013 at 1:08 AM, Greg Ungerer g...@uclinux.org wrote: On 26/06/13 05:40, Geert Uytterhoeven wrote: Some instances of config_BSP() lack an __init annotation. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org Acked-by: Greg Ungerer g...@uclinux.org Looks good. Are you

[uClinux-dev] [PATCH] m68knommu: Mark config_BSP() __init

2013-06-25 Thread Geert Uytterhoeven
Some instances of config_BSP() lack an __init annotation. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/platform/68000/m68328.c |3 ++- arch/m68k/platform/68000/m68EZ328.c |3 ++- arch/m68k/platform/68000/m68VZ328.c |3 ++- arch/m68k/platform/68360/config.c

Re: [uClinux-dev] [PATCH][M68K] implement futex.h to support userspace robust futexes and PI mutexes

2013-05-31 Thread Geert Uytterhoeven
alongside the stub futex.h and have other archs opt-in at the discretion of their maintainers. Anyway, the m68k version is now in mainline, so I'll let the uClinux people decide the rest... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond

Re: [uClinux-dev] migration issue scheduling while atomic

2013-03-06 Thread Geert Uytterhoeven
? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

Re: [uClinux-dev] [PATCH 00/12] m68knommu: generalize the ColdFire clock support for all CPU types

2012-11-15 Thread Geert Uytterhoeven
On Fri, Nov 16, 2012 at 5:47 AM, g...@snapgear.com wrote: ColdFire p[eripheraps, instead of hard coded clock definitions. peripherals Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations

Re: [uClinux-dev] [PATCH 01/12] m68knommu: add clock creation support macro for other ColdFire CPUs

2012-11-15 Thread Geert Uytterhoeven
, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

Re: [uClinux-dev] [PATCH] m68knommu: add KMAP definitions for non-MMU definitions

2012-11-11 Thread Geert Uytterhoeven
-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/include/asm/pgtable_no.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/m68k/include/asm/pgtable_no.h b/arch/m68k/include/asm/pgtable_no.h index bf86b29..037028f 100644 --- a/arch/m68k/include/asm

Re: [uClinux-dev] [PATCH] m68k: remove unused asm/dbg.h

2012-11-11 Thread Geert Uytterhoeven
On Mon, Oct 29, 2012 at 6:16 AM, g...@snapgear.com wrote: From: Greg Ungerer g...@uclinux.org The contents of the m68k asm/dbg.h are never used, remove the file and remove the one reference to it. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux

Re: [uClinux-dev] [PATCH] m68k: move to a single instance of free_initmem()

2012-11-11 Thread Geert Uytterhoeven
. For the SUN3 case we do nothing (though I think it could safely free the init memory as well). Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org void free_initmem(void) { -#ifdef CONFIG_RAMKERNEL +#ifndef CONFIG_MMU_SUN3 unsigned

Re: [uClinux-dev] [PATCH v2] m68k: merge MMU and non-MMU versions of mm/init.c

2012-11-11 Thread Geert Uytterhoeven
Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I

Re: [uClinux-dev] [PATCH] Platform code merge for 68000 core cpus

2012-10-25 Thread Geert Uytterhoeven
)' ignored Cfr. http://kisskb.ellerman.id.au/kisskb/buildresult/7416877/ BTW, it didn't break the build on my ancient workhorse binutils, but that's no guarantee it would boot... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge

Re: [uClinux-dev] __stack_start for ColdFire uClinux

2012-10-04 Thread Geert Uytterhoeven
Hi Larry, On Thu, Oct 4, 2012 at 7:15 AM, Larry Baker ba...@usgs.gov wrote: On Oct 3, 2012, at 10:00 PM, Geert Uytterhoeven wrote: I'm still looking for the conditions it takes to have something like show_registers() in arch/m68k/kernel/traps.c called when the trap occurs. The registers

Re: [uClinux-dev] __stack_start for ColdFire uClinux

2012-10-03 Thread Geert Uytterhoeven
, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that. -- Linus

Re: [uClinux-dev] framebuffer/console question

2012-09-20 Thread Geert Uytterhoeven
= cfb_copyarea, .fb_imageblit = cfb_imageblit, Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm

Re: [uClinux-dev] [PATCH] m68k: always set stack frame format for ColdFire on thread start

2012-09-16 Thread Geert Uytterhoeven
. Signed-off-by: Greg Ungerer g...@uclinux.org The classic-m68k changes look fine, so Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations

Re: [uClinux-dev] [PATCH 1/4] m68k: common PCI support definitions and code

2012-06-28 Thread Geert Uytterhoeven
On Fri, Jun 29, 2012 at 7:17 AM, g...@snapgear.com wrote: any m68k class CPU harwdare yet. hardware Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call

Re: [uClinux-dev] [PATCH 1/4] m68k: common PCI support definitions and code

2012-06-28 Thread Geert Uytterhoeven
harmful to the classic m68k support in there, so Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself

Re: [uClinux-dev] [PATCH 3/4] m68k: add IO access definitions to support PCI on ColdFire platforms

2012-06-28 Thread Geert Uytterhoeven
On Fri, Jun 29, 2012 at 7:17 AM, g...@snapgear.com wrote: Define the usual memory access functions (readb/writeb/...) and I/O space functions (inb/outb/...) for PCI bus support on ColdFire CPU based platforms. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge

Re: [uClinux-dev] [PATCH 1/2] net: add support for NS8390 based eth controllers on some ColdFire boards

2012-06-26 Thread Geert Uytterhoeven
On Tue, Jun 26, 2012 at 7:16 AM, Greg Ungerer g...@snapgear.com wrote: On 06/25/2012 05:59 PM, Geert Uytterhoeven wrote: On Mon, Jun 25, 2012 at 3:29 AM,g...@snapgear.com  wrote:  arch/m68k/include/asm/mcfne.h       |  129 +- mcf8390.h? mcfne.h is queued for removal. I was trying

Re: [uClinux-dev] [PATCH 1/2] net: add support for NS8390 based eth controllers on some ColdFire boards

2012-06-26 Thread Geert Uytterhoeven
On Tue, Jun 26, 2012 at 11:57 AM, Greg Ungerer g...@snapgear.com wrote: On 06/26/2012 05:47 PM, Geert Uytterhoeven wrote: On Tue, Jun 26, 2012 at 7:16 AM, Greg Ungererg...@snapgear.com  wrote: On 06/25/2012 05:59 PM, Geert Uytterhoeven wrote: On Mon, Jun 25, 2012 at 3:29 AM,g...@snapgear.com

Re: [uClinux-dev] [PATCH 1/2] net: add support for NS8390 based eth controllers on some ColdFire boards

2012-06-26 Thread Geert Uytterhoeven
Hi Greg, On Tue, Jun 26, 2012 at 12:14 PM, Greg Ungerer g...@snapgear.com wrote: On 06/26/2012 08:03 PM, Geert Uytterhoeven wrote: On Tue, Jun 26, 2012 at 11:57 AM, Greg Ungererg...@snapgear.com  wrote: On 06/26/2012 05:47 PM, Geert Uytterhoeven wrote: On Tue, Jun 26, 2012 at 7:16 AM, Greg

Re: [uClinux-dev] [PATCH 1/2] net: add support for NS8390 based eth controllers on some ColdFire boards

2012-06-25 Thread Geert Uytterhoeven
+++ Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say

Re: [uClinux-dev] [PATCH] Add rtc driver for Coldfire M5441x.

2012-06-17 Thread Geert Uytterhoeven
= THIS_MODULE, + .remove = __devexit_p(m5441x_rtc_remove), +}; Is there a specific reason for that? Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call

Re: [uClinux-dev] [PATCH] Add rtc driver for Coldfire M5441x.

2012-06-17 Thread Geert Uytterhoeven
On Sun, Jun 17, 2012 at 11:23 AM, Steven King sfk...@fdwdc.com wrote: On Sunday 17 June 2012 2:09:51 am Geert Uytterhoeven wrote: On Sun, Jun 17, 2012 at 9:50 AM, Steven King sfk...@fdwdc.com wrote: +config RTC_DRV_M5441x +       tristate Freescale Coldfire M5441x RTC support

Re: [uClinux-dev] [PATCH] Add rtc driver for Coldfire M5441x.

2012-06-17 Thread Geert Uytterhoeven
Hi Steven, On Sun, Jun 17, 2012 at 1:40 PM, Steven King sfk...@fdwdc.com wrote: On Sunday 17 June 2012 4:15:03 am Geert Uytterhoeven wrote: On Sun, Jun 17, 2012 at 11:23 AM, Steven King sfk...@fdwdc.com wrote: On Sunday 17 June 2012 2:09:51 am Geert Uytterhoeven wrote: On Sun, Jun 17, 2012

Re: [uClinux-dev] [PATCH] Add rtc driver for Coldfire M5441x.

2012-06-17 Thread Geert Uytterhoeven
Hi Steven, On Sun, Jun 17, 2012 at 2:10 PM, Steven King sfk...@fdwdc.com wrote: On Sunday 17 June 2012 4:50:27 am Geert Uytterhoeven wrote: On Sun, Jun 17, 2012 at 1:40 PM, Steven King sfk...@fdwdc.com wrote: On Sunday 17 June 2012 4:15:03 am Geert Uytterhoeven wrote: On Sun, Jun 17, 2012

Re: [uClinux-dev] [PATCH] m68knommu: allow ColdFire CPUs to use unaligned accesses

2012-06-12 Thread Geert Uytterhoeven
for-3.6 branch... Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

Re: [uClinux-dev] [PATCH] m68k: fix inclusion of arch_gettimeoffset for non-MMU 68k classic CPU types

2012-06-08 Thread Geert Uytterhoeven
is simply to conditionally include the arch_gettimeoffset() code on that same config setting that specifies its use or not. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's

Re: [uClinux-dev] [PATCH] m68k: make syscall_trace_enter/leave exist for non-MMU classic m68k types

2012-06-08 Thread Geert Uytterhoeven
to `syscall_trace_leave' Change the conditional check that includes these functions to be true for the !defined(CONFIG_MMU) case as well. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Hmm, should add syscall_trace support to M68KCLASSIC/MMU

Re: [uClinux-dev] [PATCH] m68knommu: allow ColdFire CPUs to use unaligned accesses

2012-06-08 Thread Geert Uytterhoeven
from the early non-MMU support for the basic 68000 proecssors - which do not support unaligned accesses. Signed-off-by: Greg Ungerer g...@uclinux.org I'll add this to my tree, as it depends on the other CPU_HAS_NO_UNALIGNED patches. Gr{oetje,eeting}s,                         Geert -- Geert

[uClinux-dev] [PATCH] m68knommu: Clean up printing of sections

2012-05-31 Thread Geert Uytterhoeven
- Remove casts and unneeded address-of ('') operators, - Use %p to format pointers, %lx to format unsigned longs. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- Not even compile tested arch/m68k/kernel/setup_no.c | 11 --- 1 files changed, 4 insertions(+), 7 deletions

[uClinux-dev] [PATCH/RFC] mtd/uclinux: Use generic __bss_stop instead of _ebss

2012-05-31 Thread Geert Uytterhoeven
The standard (see BSS_SECTION() in asm-generic/vmlinux.lds.h and asm-generic/sections.h) symbol for the end of BSS is __bss_stop. This allows to remove all local declarations that have been added to several architectures just to please CONFIG_MTD_UCLINUX. Not-Yet-Signed-off-by: Geert Uytterhoeven

Re: [uClinux-dev] [PATCH] m68k: merge the MMU and non-MMU signal.c code

2012-05-20 Thread Geert Uytterhoeven
, but still Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking

Re: [uClinux-dev] [PATCH 2/2] m68k: merge the MMU and non-MMU versions of the arch dma code

2012-05-20 Thread Geert Uytterhoeven
different, so we keep a single #ifdef based on CONFIG_MMU for them. All the other support functions are now identical. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots

Re: [uClinux-dev] [PATCH 1/2] m68knommu: reorganize the no-MMU cache flushing to match m68k

2012-05-20 Thread Geert Uytterhoeven
On Fri, May 4, 2012 at 8:50 AM, g...@snapgear.com wrote: In particular by reorganizing the __flush_caceh_all() code and separating __flush_cache_all() Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

Re: [uClinux-dev] [PATCH v2 2/3] m68k: use jbsr to call functions instead of bsrl

2012-05-20 Thread Geert Uytterhoeven
will be clean for all 68k and ColdFire CPU types. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal

Re: [uClinux-dev] [PATCH v2 1/3] m68k: use some direct calls to ret_from_exception in entry code

2012-05-20 Thread Geert Uytterhoeven
instead of the associated label. The effected function paths are: buserr, trap and ret_from_fork. So change these to branch directly to ret_from_exception. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s

Re: [uClinux-dev] [PATCH v2 3/3] m68k: merge the MMU and non-MMU versions of the entry.S code

2012-05-20 Thread Geert Uytterhoeven
. Signed-off-by: Greg Ungerer g...@uclinux.org Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself

Re: [uClinux-dev] [PATCH 1/1] 68000 code integration

2012-05-06 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

Re: [uClinux-dev] [PATCH 00/11] m68knommu: remove ColdFire sub-architecture directories

2012-05-02 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus Torvalds

[uClinux-dev] Re: [PATCH 2/4] TTY: serial, remove dead code from 68328

2011-08-31 Thread Geert Uytterhoeven
On Wed, Aug 31, 2011 at 21:51, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Wed, Aug 31, 2011 at 21:24, Jiri Slaby jsl...@suse.cz wrote: The code is dead at least since 2002. So remove it to not distort git grep output (about port.tty usage). Remove the whole do_softirq tasklet as it's

Re: [uClinux-dev] [PATCH] m68k: reorganize Kconfig options to improve mmu/non-mmu selections

2011-08-13 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus

[uClinux-dev] Re: [PATCH] m68k: merge the mmu and non-mmu kernel/Makefiles

2011-08-13 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus

[uClinux-dev] [PATCH] m68k: Revive reporting of spurious interrupts

2011-07-13 Thread Geert Uytterhoeven
architectures are using. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- Will build on top of this for m68k genirq. arch/m68k/kernel/irq.c | 10 ++ arch/m68k/platform/68328/entry.S |2 +- arch/m68k/platform/68328/ints.c |3 --- arch/m68k/platform/68360/entry.S |2

[uClinux-dev] Re: [PATCH] m68knommu: Move forward declaration of do_IRQ() from machdep.h to irq.h

2011-07-04 Thread Geert Uytterhoeven
Hi Greg, On Mon, Jul 4, 2011 at 02:26, Greg Ungerer g...@snapgear.com wrote: On 03/07/11 19:09, Geert Uytterhoeven wrote: Oops, there's also an asmlinkage missing. Corrected patch below. from 63dab1c663875083f095819431bbc6560c2a8dfb Mon Sep 17 00:00:00 2001 From: Geert Uytterhoevenge

[uClinux-dev] [PATCH] m68knommu: Move forward declaration of do_IRQ() from machdep.h to irq.h

2011-07-03 Thread Geert Uytterhoeven
It is not machine-specific, but common irq infrastructure. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- I will need this for m68k genirq soon. arch/m68k/include/asm/irq.h |2 ++ arch/m68k/include/asm/machdep.h |1 - 2 files changed, 2 insertions(+), 1 deletions

[uClinux-dev] Re: [PATCH] m68knommu: Move forward declaration of do_IRQ() from machdep.h to irq.h

2011-07-03 Thread Geert Uytterhoeven
Oops, there's also an asmlinkage missing. Corrected patch below. From 63dab1c663875083f095819431bbc6560c2a8dfb Mon Sep 17 00:00:00 2001 From: Geert Uytterhoeven ge...@linux-m68k.org Date: Sun, 3 Jul 2011 10:49:58 +0200 Subject: [PATCH] m68knommu: Move forward declaration of do_IRQ() from

[uClinux-dev] Re: [PATCH] m68k: merge mmu and non-mmu bitops.h

2011-06-26 Thread Geert Uytterhoeven
the indentation and spacing problems reported by checkpatch, you can add my Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I

[uClinux-dev] Re: [PATCH 1/2] m68knommu: create config options for CPU classes

2011-06-12 Thread Geert Uytterhoeven
Hi Greg. On Fri, Jun 10, 2011 at 05:56, Greg Ungerer g...@snapgear.com wrote: Are you happy enough with these patches the way they are? Yep. Acked-by: Geert Uytterhoeven ge...@linux-m68k.org Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux

[uClinux-dev] Re: [PATCH 1/2] m68knommu: create config options for CPU classes

2011-06-03 Thread Geert Uytterhoeven
processor. For the most part it is used in without bitfield instructions. +         System-On-Chip parts, and does not contain a paging MMU. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal

[uClinux-dev] Re: [PATCH v3 5/6] m68k: remove duplicate memcpy() implementation

2011-06-02 Thread Geert Uytterhoeven
On Thu, Jun 2, 2011 at 07:18, Greg Ungerer g...@snapgear.com wrote: On 26/05/11 16:38, Geert Uytterhoeven wrote: I was more thinking along the lines of !CONFIG_M68000  !CONFIG_M68010  !CONFIG_whatever Coldfire that doesn't support it. Or in this case (and probably most cases) we could just

[uClinux-dev] Re: [PATCH v3 5/6] m68k: remove duplicate memcpy() implementation

2011-05-26 Thread Geert Uytterhoeven
in the ColdFire MMU code this won't be right. I was more thinking along the lines of !CONFIG_M68000 !CONFIG_M68010 !CONFIG_whatever Coldfire that doesn't support it. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux

[uClinux-dev] [PATCH 3/4] m68knommu: Make empty_zero_page void *, like on m68k

2011-05-25 Thread Geert Uytterhoeven
This allows to get rid of the casts. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/mm/init_no.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/m68k/mm/init_no.c b/arch/m68k/mm/init_no.c index 7cbd7bd..fdbe679 100644 --- a/arch/m68k/mm

[uClinux-dev] [PATCH 4/4] m68knommu: Fix printk() format in free_initrd_mem()

2011-05-25 Thread Geert Uytterhoeven
arch/m68k/mm/init_no.c:123: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘long unsigned int’ And use pr_notice() while we're at it. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/mm/init_no.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions

[uClinux-dev] Re: [PATCH 3/4] m68knommu: Make empty_zero_page void *, like on m68k

2011-05-25 Thread Geert Uytterhoeven
Hi Greg, On Thu, May 26, 2011 at 06:39, Greg Ungerer g...@snapgear.com wrote: On 25/05/11 19:10, Geert Uytterhoeven wrote: This allows to get rid of the casts. Signed-off-by: Geert Uytterhoevenge...@linux-m68k.org Looks good: Acked-by: Greg Ungerer g...@uclinux.org Do you want me to add

[uClinux-dev] Re: [PATCH v3 5/6] m68k: remove duplicate memcpy() implementation

2011-05-24 Thread Geert Uytterhoeven
On Mon, May 23, 2011 at 21:54, Andreas Schwab sch...@linux-m68k.org wrote: Geert Uytterhoeven ge...@linux-m68k.org writes: FWIW, my m68k-linux-gnu-gcc (4.1.2 20061115 (prerelease)) always defines __mc68000__ and __mc68020__, even when specifying -m68000 on the command line. m68k-linux has

[uClinux-dev] Re: [PATCH] m68k: merge the mmu and non-mmu versions of sys_m68k.c

2011-05-21 Thread Geert Uytterhoeven
with a few ifdefs, as it's more localized. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say

[uClinux-dev] Re: [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-05-06 Thread Geert Uytterhoeven
On Fri, May 6, 2011 at 10:24, Andreas Schwab sch...@linux-m68k.org wrote: Geert Uytterhoeven ge...@linux-m68k.org writes: BTW, we have a hole at 218/219. I don't remember why, but it may have been a placeholder for pselect6 and ppoll when that implementation was still in flux. Couldn't find

[uClinux-dev] [PATCH] m68k: Really wire up sys_pselect6 and sys_ppoll

2011-05-06 Thread Geert Uytterhoeven
We reserved the numbers a long time ago, but never wired them up in the syscall table as they need TIF_RESTORE_SIGMASK, which we only got last year in commit cb6831d5d3099e772a510eb3e1ed0760ccffb45e (m68k: Switch to saner sigsuspend()) Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org

[uClinux-dev] Re: [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-05-05 Thread Geert Uytterhoeven
2001 From: Geert Uytterhoeven ge...@linux-m68k.org Date: Thu, 5 May 2011 20:33:02 +0200 Subject: [PATCH] m68k: unistd - Comment out definitions for unimplemented syscalls Suggested-by: Arnd Bergmann a...@arndb.de Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/include/asm

[uClinux-dev] Re: [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-05-05 Thread Geert Uytterhoeven
On Thu, May 5, 2011 at 22:37, Arnd Bergmann a...@arndb.de wrote: On Thursday 05 May 2011 20:44:20 Geert Uytterhoeven wrote: recvmmsg is a false positive, as we set __ARCH_WANT_SYS_SOCKETCALL. This looks really strange. The commit that introduced recvmmsg (a2e27255) added it to both socketcall

[uClinux-dev] Re: [PATCH] m68knommu: Use generic show_interrupts()

2011-05-01 Thread Geert Uytterhoeven
On Sun, May 1, 2011 at 01:00, Greg Ungerer g...@snapgear.com wrote: On 01/05/11 07:15, Geert Uytterhoeven wrote: Apart from whitespace differences, /proc/interrupts doesn't change by enabling GENERIC_IRQ_SHOW. Signed-off-by: Geert Uytterhoevenge...@linux-m68k.org Works fine on m68knommu, so

[uClinux-dev] [PATCH] m68knommu: Use generic show_interrupts()

2011-04-30 Thread Geert Uytterhoeven
Apart from whitespace differences, /proc/interrupts doesn't change by enabling GENERIC_IRQ_SHOW. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- _not_ tested on m68knommu. Observations done on work-in-progress Atari genirq. arch/m68k/Kconfig |1 + arch/m68k/kernel/irq.c

[uClinux-dev] Re: [PATCH 5/5] m68k: merge non-mmu and mmu versions of m68k_ksyms.c

2011-04-21 Thread Geert Uytterhoeven
(__udivsi3); +EXPORT_SYMBOL(__umodsi3);  #endif Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say

Re: [uClinux-dev] [PATCH v2 1/6] m68k: merge mmu and non-mmu versions of muldi3

2011-04-20 Thread Geert Uytterhoeven
{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

[uClinux-dev] Re: [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-04-19 Thread Geert Uytterhoeven
? It doesn't complain. Ah, you actually define the syscall numbers for these, so it will not warn, despite the fact that the entry is missing. Yep, asm/unistd.h is shared between mmu and nommu. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux

Re: [uClinux-dev] [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-04-13 Thread Geert Uytterhoeven
targets for me. Thanks, I'll move it .rodata. Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just

[uClinux-dev] Re: [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-04-13 Thread Geert Uytterhoeven
On Wed, Apr 6, 2011 at 22:33, Geert Uytterhoeven ge...@linux-m68k.org wrote: +#ifndef CONFIG_MMU +#define sys_swapon             sys_ni_syscall +#define sys_swapoff            sys_ni_syscall +#define sys_mprotect           sys_ni_syscall +#define sys_msync              sys_ni_syscall

[uClinux-dev] [PATCH] m68k: Merge mmu and non-mmu versions of sys_call_table

2011-04-06 Thread Geert Uytterhoeven
Impact for m68knommu: - The table is now stored in .data instead of .text, - Removed unused padding at the end of the table. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- Not tested on m68knommu Questions: - Why was it .text? - Was NR_syscalls ever larger than the actual

[uClinux-dev] Re: [PATCH 0/1] m68k: merge m68k and m68knommu arch directories

2011-03-24 Thread Geert Uytterhoeven
On Thu, Mar 24, 2011 at 01:01, Greg Ungerer g...@snapgear.com wrote: Hi Geert, On 24/03/11 08:14, Geert Uytterhoeven wrote: On Wed, Mar 23, 2011 at 23:07, Geert Uytterhoevenge...@linux-m68k.org  wrote: On Tue, Mar 22, 2011 at 05:43, ág...@snapgear.com  wrote: The following patch merges

[uClinux-dev] Re: [PATCH 0/1] m68k: merge m68k and m68knommu arch directories

2011-03-24 Thread Geert Uytterhoeven
Hi Greg, On Thu, Mar 24, 2011 at 00:00, Greg Ungerer g...@snapgear.com wrote: On 24/03/11 08:07, Geert Uytterhoeven wrote: On Tue, Mar 22, 2011 at 05:43,g...@snapgear.com  wrote: slso on the for-next branch in that tree, so will get some testing in the next tree for the next few days

[uClinux-dev] [PATCH] m68k,m68knommu: Wire up syncfs

2011-03-23 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- To be folded with the previous one. arch/m68k/include/asm/unistd.h |3 ++- arch/m68k/kernel/entry.S |1 + arch/m68knommu/kernel/syscalltable.S |1 + 3 files changed, 4 insertions(+), 1 deletions(-) diff

[uClinux-dev] Re: [PATCH 0/1] m68k: merge m68k and m68knommu arch directories

2011-03-23 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus Torvalds

[uClinux-dev] Re: [PATCH 0/1] m68k: merge m68k and m68knommu arch directories

2011-03-23 Thread Geert Uytterhoeven
On Wed, Mar 23, 2011 at 23:07, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Tue, Mar 22, 2011 at 05:43,  g...@snapgear.com wrote: The following patch merges the m68k and m68knommu arch directories. This patch has been trimmed for review purposes - the automated file moving and mergeing

[uClinux-dev] (no subject)

2011-03-20 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org --- arch/m68k/include/asm/unistd.h |5 - arch/m68k/kernel/entry.S |3 +++ arch/m68knommu/kernel/syscalltable.S |3 +++ 3 files changed, 10 insertions(+), 1 deletions(-) diff --git a/arch/m68k/include/asm

[uClinux-dev] Re: m68k, m68knommu: Wire up name_to_handle_at, open_by_handle_at, clock_adjtime

2011-03-20 Thread Geert Uytterhoeven
Oops, lost the subject On Sun, Mar 20, 2011 at 13:11, Geert Uytterhoeven ge...@linux-m68k.org wrote: Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org ---  arch/m68k/include/asm/unistd.h       |    5 -  arch/m68k/kernel/entry.S             |    3 +++  arch/m68knommu/kernel

[uClinux-dev] Re: Support for ARM940T core Samsung S3C2510A MCU under Linux

2011-03-19 Thread Geert Uytterhoeven
-- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus Torvalds

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-03-18 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like that.                                 -- Linus Torvalds

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-21 Thread Geert Uytterhoeven
,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say programmer or something like

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-21 Thread Geert Uytterhoeven
task to migrate m68k than it was/is to migrate sparc32. It would be _very_ nice to get the last two architectures migrated to genirq. Aren't your forgetting s390? Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-20 Thread Geert Uytterhoeven
On Mon, Feb 21, 2011 at 00:53, Greg Ungerer g...@snapgear.com wrote: On 19/02/11 18:39, Geert Uytterhoeven wrote: On Fri, Feb 18, 2011 at 23:12, Greg Ungererg...@snapgear.com  wrote: On 19/02/11 01:24, Geert Uytterhoeven wrote: On Fri, Feb 18, 2011 at 12:27, Geert Uytterhoevenge...@linux

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-19 Thread Geert Uytterhoeven
On Fri, Feb 18, 2011 at 23:12, Greg Ungerer g...@snapgear.com wrote: On 19/02/11 01:24, Geert Uytterhoeven wrote: On Fri, Feb 18, 2011 at 12:27, Geert Uytterhoevenge...@linux-m68k.org  wrote: On Fri, Feb 18, 2011 at 01:07, Greg Ungererg...@snapgear.com  wrote: I would like to put up

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-18 Thread Geert Uytterhoeven
/Makefile_no +include $(srctree)/arch/m68k/Makefile_no endif Don't you need to add # CONFIG_MMU is not set to all m68knommu defconfig files? Building... Gr{oetje,eeting}s,                         Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal

[uClinux-dev] Re: merge of m68knommu and m68k arch branches?

2011-02-18 Thread Geert Uytterhoeven
On Fri, Feb 18, 2011 at 12:27, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Fri, Feb 18, 2011 at 01:07, Greg Ungerer g...@snapgear.com wrote: I would like to put up for discussion a merge of the m68knommu and m68k arch branches. Attached is a script and patch that does a kind of brute

  1   2   >