From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: Michael Buesch <mb@bu3sch.de>,
netdev@vger.kernel.org, Felix Fietkau <nbd@openwrt.org>
Subject: Re: [PATCH 2/4][SSB] EXTIF serial port initialization
Date: Sun, 5 Aug 2007 21:21:17 -0300 [thread overview]
Message-ID: <20070806002117.GJ2469@ghostprotocols.net> (raw)
In-Reply-To: <20070805231959.GC13927@hall.aurel32.net>
Em Mon, Aug 06, 2007 at 01:19:59AM +0200, Aurelien Jarno escreveu:
> The patch below against 2.6.23-rc1-mm2 implements EXTIF serial
> initialization, currently marked as TODO.
>
> It originally comes from the OpenWrt patches.
Comments below
> Cc: Felix Fietkau <nbd@openwrt.org>
> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
>
> --- a/drivers/ssb/driver_mipscore.c
> +++ b/drivers/ssb/driver_mipscore.c
> @@ -128,51 +128,52 @@
> ssb_write32(mdev, SSB_IPSFLAG, irqflag);
> }
>
> -/* XXX: leave here or move into separate extif driver? */
> -static int ssb_extif_serial_init(struct ssb_device *dev, struct ssb_serial_ports *ports)
> +static inline bool serial_exists(u8 *regs)
> {
> + u8 save_mcr, msr = 0;
Why declare save_mcr here...
>
> + if (regs) {
if it is just used here?
> + save_mcr = regs[UART_MCR];
> + regs[UART_MCR] = (UART_MCR_LOOP | UART_MCR_OUT2 | UART_MCR_RTS);
> + msr = regs[UART_MSR] & (UART_MSR_DCD | UART_MSR_RI \
> + | UART_MSR_CTS | UART_MSR_DSR);
> + regs[UART_MCR] = save_mcr;
> + }
> + return (msr == (UART_MSR_DCD | UART_MSR_CTS));
> }
>
> -
> -static void ssb_mips_serial_init(struct ssb_mipscore *mcore)
> +static int ssb_extif_serial_init(struct ssb_extif *dev, struct ssb_serial_port *ports)
> {
> - struct ssb_bus *bus = mcore->dev->bus;
> + u32 i, nr_ports = 0;
>
> - //TODO if (EXTIF available
> -#if 0
> - extifregs_t *eir = (extifregs_t *) regs;
> - sbconfig_t *sb;
> -
> - /* Determine external UART register base */
> - sb = (sbconfig_t *)((ulong) eir + SBCONFIGOFF);
> - base = EXTIF_CFGIF_BASE(sb_base(R_REG(&sb->sbadmatch1)));
> -
> - /* Determine IRQ */
> - irq = sb_irq(sbh);
> -
> - /* Disable GPIO interrupt initially */
> - W_REG(&eir->gpiointpolarity, 0);
> - W_REG(&eir->gpiointmask, 0);
> -
> - /* Search for external UARTs */
> - n = 2;
> - for (i = 0; i < 2; i++) {
> - regs = (void *) REG_MAP(base + (i * 8), 8);
> - if (BCMINIT(serial_exists)(regs)) {
> - /* Set GPIO 1 to be the external UART IRQ */
> - W_REG(&eir->gpiointmask, 2);
> - if (add)
> - add(regs, irq, 13500000, 0);
> - }
> + /* Disable GPIO interrupt initially */
> + extif_write32(dev, SSB_EXTIF_GPIO_INTPOL, 0);
> + extif_write32(dev, SSB_EXTIF_GPIO_INTMASK, 0);
> +
> + for (i = 0; i < 2; i++) {
> + void __iomem *uart_regs;
> +
> + uart_regs = ioremap_nocache(SSB_EUART, 16);
ioremap_nocache can fail, even if just on, say, an instrumented kernel
that inserts failures in such functions to catch possible errors not
being handled.
> + uart_regs += (i * 8);
> +
> + if (serial_exists(uart_regs) && ports) {
> + extif_write32(dev, SSB_EXTIF_GPIO_INTMASK, 2);
> +
> + nr_ports++;
> + ports[i].regs = uart_regs;
> + ports[i].irq = 2;
> + ports[i].baud_base = 13500000;
> + ports[i].reg_shift = 0;
> }
> + iounmap(uart_regs);
> + }
> + return nr_ports;
> +}
>
> - /* Add internal UART if enabled */
> - if (R_REG(&eir->corecontrol) & CC_UE)
> - if (add)
> - add((void *) &eir->uartdata, irq, sb_clock(sbh), 2);
> +static void ssb_mips_serial_init(struct ssb_mipscore *mcore)
> +{
> + struct ssb_bus *bus = mcore->dev->bus;
>
> -#endif
> if (bus->extif.dev)
> mcore->nr_serial_ports = ssb_extif_serial_init(&bus->extif, mcore->serial_ports);
> else if (bus->chipco.dev)
next prev parent reply other threads:[~2007-08-06 0:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-05 23:19 [PATCH 2/4][SSB] EXTIF serial port initialization Aurelien Jarno
2007-08-06 0:21 ` Arnaldo Carvalho de Melo [this message]
2007-08-06 8:51 ` Michael Buesch
2007-08-06 13:14 ` Arnaldo Carvalho de Melo
2007-08-06 8:43 ` Michael Buesch
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=20070806002117.GJ2469@ghostprotocols.net \
--to=acme@ghostprotocols.net \
--cc=aurelien@aurel32.net \
--cc=mb@bu3sch.de \
--cc=nbd@openwrt.org \
--cc=netdev@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.