From: Andrew Morton <akpm@osdl.org>
To: Hirokazu Takata <takata@linux-m32r.org>
Cc: linux-kernel@vger.kernel.org, sakugawa@linux-m32r.org,
takata@linux-m32r.org
Subject: Re: [PATCH 2.6.12-rc5] m32r: Support M3A-2170(Mappi-III) platform
Date: Tue, 31 May 2005 14:01:51 -0700 [thread overview]
Message-ID: <20050531140151.791007b3.akpm@osdl.org> (raw)
In-Reply-To: <20050531.214805.783383719.takata.hirokazu@renesas.com>
Hirokazu Takata <takata@linux-m32r.org> wrote:
>
> This patchset is for supporting a new m32r platform,
> M3A-2170(Mappi-III) evaluation board.
> An M32R chip multiprocessor is equipped on the board.
> http://http://www.linux-m32r.org/eng/platform/platform.html
>
> ...
> static void putc(char c)
> {
> -
> while ((*BOOT_SIO0STS & 0x3) != 0x3) ;
cpu_relax()?
> static void putc(char c)
> {
> -
> while ((*SIO0STS & 0x1) == 0) ;
cpu_relax()?
> +unsigned char _inb(unsigned long port)
> +{
> + if (port >= LAN_IOSTART && port < LAN_IOEND)
> + return _ne_inb(PORT2ADDR_NE(port));
> +#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
> + else if ((port >= 0x1f0 && port <=0x1f7) || port == 0x3f6) {
> + return *(volatile unsigned char *)__port2addr_ata(port);
> + }
> +#endif
> +#if defined(CONFIG_PCMCIA) && defined(CONFIG_M32R_CFC)
> + else if (port >= M32R_PCC_IOSTART0 && port <= M32R_PCC_IOEND0) {
> + unsigned char b;
> + pcc_ioread_byte(0, port, &b, sizeof(b), 1, 0);
> + return b;
> + } else
> +#endif
> + return *(volatile unsigned char *)PORT2ADDR(port);
> +}
This file contains some very strange stuff.
> +unsigned char _inb_p(unsigned long port)
> +{
> + unsigned char v;
> +
> + if (port >= LAN_IOSTART && port < LAN_IOEND)
> + v = _ne_inb(PORT2ADDR_NE(port));
> + else
> +#if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC)
> + if ((port >= 0x1f0 && port <=0x1f7) || port == 0x3f6) {
> + return *(volatile unsigned char *)__port2addr_ata(port);
> + } else
> +#endif
> +#if defined(CONFIG_PCMCIA) && defined(CONFIG_M32R_CFC)
> + if (port >= M32R_PCC_IOSTART0 && port <= M32R_PCC_IOEND0) {
> + unsigned char b;
> + pcc_ioread_byte(0, port, &b, sizeof(b), 1, 0);
> + return b;
> + } else
> +#endif
> + v = *(volatile unsigned char *)PORT2ADDR(port);
> +
> + delay();
> + return (v);
> +}
Wouldn't it make things more maintainable if (for example) _inb_p() called
_inb() rather than duplicating it?
> @@ -0,0 +1,208 @@
> +/*
> + * linux/arch/m32r/kernel/setup_mappi3.c
> + *
> + * Setup routines for Renesas MAPPI-III(M3A-2170) Board
> + *
> + * Copyright (c) 2001-2005 Hiroyuki Kondo, Hirokazu Takata,
> + * Hitoshi Yamamoto, Mamoru Sakugawa
> + */
> +
> ...
> +static struct hw_interrupt_type mappi3_irq_type =
> +{
> + "MAPPI3-IRQ",
> + startup_mappi3_irq,
> + shutdown_mappi3_irq,
> + enable_mappi3_irq,
> + disable_mappi3_irq,
> + mask_and_ack_mappi3,
> + end_mappi3_irq
> +};
Would be nicer to use
.name = value,
All of this code will fail to work if (for example) PCMCIA or IDE are
selected for modular build.
next prev parent reply other threads:[~2005-05-31 21:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-31 12:48 Hirokazu Takata
2005-05-31 21:01 ` Andrew Morton [this message]
2005-06-03 7:45 ` [PATCH 2.6.12-rc5-mm2] m32r: Update m32r_sio.c to use cpu_relax() Hirokazu Takata
2005-06-07 2:15 ` [PATCH 2.6.12-rc5] m32r: Update io_xxxxx.c (was Re: [PATCH 2.6.12-rc5] m32r: Support M3A-2170(Mappi-III) platform) Hirokazu Takata
2005-06-07 2:15 ` [PATCH 2.6.12-rc5-mm2] m32r: Update setup_xxxxx.c " Hirokazu Takata
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050531140151.791007b3.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sakugawa@linux-m32r.org \
--cc=takata@linux-m32r.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®