All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Ellerman <michael@ellerman.id.au>
To: Olof Johansson <olof@lixom.net>
Cc: netdev@vger.kernel.org, pasemi-linux@ozlabs.org,
	jgarzik@pobox.com, linuxppc-dev@ozlabs.org
Subject: Re: [patch 1/6] pasemi_mac: Move RX/TX section enablement to dma_lib
Date: Tue, 26 Feb 2008 22:46:06 +1100	[thread overview]
Message-ID: <1204026366.7203.9.camel@concordia> (raw)
In-Reply-To: <20080221025929.082348000@lixom.net>

[-- Attachment #1: Type: text/plain, Size: 1361 bytes --]

On Wed, 2008-02-20 at 20:57 -0600, Olof Johansson wrote:
> plain text document attachment (in-progress)
> Also stop both rx and tx sections before changing the configuration of
> the dma device during init.
> 
> Signed-off-by: Olof Johansson <olof@lixom.net>
> 
> Index: k.org/arch/powerpc/platforms/pasemi/dma_lib.c
> ===================================================================
> --- k.org.orig/arch/powerpc/platforms/pasemi/dma_lib.c
> +++ k.org/arch/powerpc/platforms/pasemi/dma_lib.c
> @@ -478,6 +478,30 @@ int pasemi_dma_init(void)
>  	for (i = 0; i < MAX_RXCH; i++)
>  		__set_bit(i, rxch_free);
>  
> +	i = 1000;
> +	pasemi_write_dma_reg(PAS_DMA_COM_RXCMD, 0);
> +	while ((i > 0) && (pasemi_read_dma_reg(PAS_DMA_COM_RXSTA) & 1))
> +		i--;
> +	if (i < 0)
> +		printk(KERN_INFO "Warning: Could not disable RX section\n");
> +
> +	i = 1000;
> +	pasemi_write_dma_reg(PAS_DMA_COM_TXCMD, 0);
> +	while ((i > 0) && (pasemi_read_dma_reg(PAS_DMA_COM_TXSTA) & 1))
> +		i--;

This kind of caught my eye, is it still going to work when the next core
is twice as fast?

cheers

-- 
Michael Ellerman
OzLabs, IBM Australia Development Lab

wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)

We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Michael Ellerman <michael@ellerman.id.au>
To: Olof Johansson <olof@lixom.net>
Cc: jgarzik@pobox.com, netdev@vger.kernel.org,
	pasemi-linux@ozlabs.org, linuxppc-dev@ozlabs.org
Subject: Re: [patch 1/6] pasemi_mac: Move RX/TX section enablement to dma_lib
Date: Tue, 26 Feb 2008 22:46:06 +1100	[thread overview]
Message-ID: <1204026366.7203.9.camel@concordia> (raw)
In-Reply-To: <20080221025929.082348000@lixom.net>

[-- Attachment #1: Type: text/plain, Size: 1361 bytes --]

On Wed, 2008-02-20 at 20:57 -0600, Olof Johansson wrote:
> plain text document attachment (in-progress)
> Also stop both rx and tx sections before changing the configuration of
> the dma device during init.
> 
> Signed-off-by: Olof Johansson <olof@lixom.net>
> 
> Index: k.org/arch/powerpc/platforms/pasemi/dma_lib.c
> ===================================================================
> --- k.org.orig/arch/powerpc/platforms/pasemi/dma_lib.c
> +++ k.org/arch/powerpc/platforms/pasemi/dma_lib.c
> @@ -478,6 +478,30 @@ int pasemi_dma_init(void)
>  	for (i = 0; i < MAX_RXCH; i++)
>  		__set_bit(i, rxch_free);
>  
> +	i = 1000;
> +	pasemi_write_dma_reg(PAS_DMA_COM_RXCMD, 0);
> +	while ((i > 0) && (pasemi_read_dma_reg(PAS_DMA_COM_RXSTA) & 1))
> +		i--;
> +	if (i < 0)
> +		printk(KERN_INFO "Warning: Could not disable RX section\n");
> +
> +	i = 1000;
> +	pasemi_write_dma_reg(PAS_DMA_COM_TXCMD, 0);
> +	while ((i > 0) && (pasemi_read_dma_reg(PAS_DMA_COM_TXSTA) & 1))
> +		i--;

This kind of caught my eye, is it still going to work when the next core
is twice as fast?

cheers

-- 
Michael Ellerman
OzLabs, IBM Australia Development Lab

wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)

We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2008-02-26 11:46 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-21  2:57 [patch 0/6] pasemi_mac updates for 2.6.26 Olof Johansson
2008-02-21  2:57 ` Olof Johansson
2008-02-21  2:57 ` [patch 1/6] pasemi_mac: Move RX/TX section enablement to dma_lib Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-26 11:46   ` Michael Ellerman [this message]
2008-02-26 11:46     ` Michael Ellerman
2008-02-26 14:14     ` Olof Johansson
2008-03-05 18:21       ` [Pasemi-linux] " Olof Johansson
2008-03-06  0:47         ` Michael Ellerman
2008-02-21  2:57 ` [patch 2/6] [POWERPC] pasemi: Add flag management functions " Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-21  2:57 ` [patch 3/6] [POWERPC] pasemi: Add function engine " Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-21  2:57 ` [patch 4/6] pasemi_mac: jumbo frame support Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-21  2:57 ` [patch 5/6] pasemi_mac: Enable GSO by default Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-21  2:57 ` [patch 6/6] pasemi_mac: basic ethtool support Olof Johansson
2008-02-21  2:57   ` Olof Johansson
2008-02-26  9:49 ` [patch 0/6] pasemi_mac updates for 2.6.26 Paul Mackerras
2008-02-26  9:49   ` Paul Mackerras
2008-02-26 14:16   ` Olof Johansson
2008-02-26 18:21     ` Jeff Garzik
2008-02-26 18:21       ` Jeff Garzik
2008-02-26 18:33       ` Olof Johansson

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=1204026366.7203.9.camel@concordia \
    --to=michael@ellerman.id.au \
    --cc=jgarzik@pobox.com \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=netdev@vger.kernel.org \
    --cc=olof@lixom.net \
    --cc=pasemi-linux@ozlabs.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.