* [U-Boot-Users] [PATCH] Update SystemACE driver for 16bit access
@ 2007-02-20 12:33 Stefan Roese
2007-02-21 16:25 ` Grant Likely
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Roese @ 2007-02-20 12:33 UTC (permalink / raw)
To: u-boot
This patch removes some problems when the Xilinx SystemACE driver
is used with 16bit access on an big endian platform (like the
AMCC Katmai).
Signed-off-by: Stefan Roese <sr@denx.de>
---
commit d93e2212f962668b3dce091ff5edc33f2347fe37
tree 19b9b366ae1bdb33437370fa5dd009068c2039ec
parent 874bb7b88fe9b4648e1288a387af2e31014a72f3
author Stefan Roese <sr@denx.de> Tue, 20 Feb 2007 13:17:42 +0100
committer Stefan Roese <sr@denx.de> Tue, 20 Feb 2007 13:17:42 +0100
drivers/systemace.c | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/drivers/systemace.c b/drivers/systemace.c
index 9502623..3bd2ea9 100644
--- a/drivers/systemace.c
+++ b/drivers/systemace.c
@@ -66,8 +66,8 @@
writeb(val>>8, CFG_SYSTEMACE_BASE+off+1);}
#endif
#else
-#define ace_readw(off) (readw(CFG_SYSTEMACE_BASE+off))
-#define ace_writew(val, off) (writew(val, CFG_SYSTEMACE_BASE+off))
+#define ace_readw(off) (in16(CFG_SYSTEMACE_BASE+off))
+#define ace_writew(val, off) (out16(CFG_SYSTEMACE_BASE+off,val))
#endif
/* */
@@ -119,6 +119,14 @@ block_dev_desc_t *systemace_get_dev(int dev)
systemace_dev.removable = 1;
systemace_dev.block_read = systemace_read;
+#if (CFG_SYSTEMACE_WIDTH == 16)
+ /*
+ * By default the SystemACE comes up in 8-bit mode.
+ * Ensure that 16-bit mode gets enabled.
+ */
+ ace_writew(0x0001, 0);
+#endif
+
init_part(&systemace_dev);
}
@@ -197,7 +205,7 @@ static unsigned long systemace_read(int dev, unsigned long start,
#endif
/* Write LBA block address */
ace_writew((start >> 0) & 0xffff, 0x10);
- ace_writew((start >> 16) & 0x00ff, 0x12);
+ ace_writew((start >> 16) & 0x0fff, 0x12);
/* NOTE: in the Write Sector count below, a count of 0
causes a transfer of 256, so &0xff gives the right
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot-Users] [PATCH] Update SystemACE driver for 16bit access
2007-02-20 12:33 [U-Boot-Users] [PATCH] Update SystemACE driver for 16bit access Stefan Roese
@ 2007-02-21 16:25 ` Grant Likely
2007-02-21 19:58 ` Stefan Roese
0 siblings, 1 reply; 3+ messages in thread
From: Grant Likely @ 2007-02-21 16:25 UTC (permalink / raw)
To: u-boot
On 2/20/07, Stefan Roese <sr@denx.de> wrote:
> This patch removes some problems when the Xilinx SystemACE driver
> is used with 16bit access on an big endian platform (like the
> AMCC Katmai).
>
> Signed-off-by: Stefan Roese <sr@denx.de>
>
> ---
> commit d93e2212f962668b3dce091ff5edc33f2347fe37
> tree 19b9b366ae1bdb33437370fa5dd009068c2039ec
> parent 874bb7b88fe9b4648e1288a387af2e31014a72f3
> author Stefan Roese <sr@denx.de> Tue, 20 Feb 2007 13:17:42 +0100
> committer Stefan Roese <sr@denx.de> Tue, 20 Feb 2007 13:17:42 +0100
>
> drivers/systemace.c | 14 +++++++++++---
> 1 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/systemace.c b/drivers/systemace.c
> index 9502623..3bd2ea9 100644
> --- a/drivers/systemace.c
> +++ b/drivers/systemace.c
> @@ -66,8 +66,8 @@
> writeb(val>>8, CFG_SYSTEMACE_BASE+off+1);}
> #endif
> #else
> -#define ace_readw(off) (readw(CFG_SYSTEMACE_BASE+off))
> -#define ace_writew(val, off) (writew(val, CFG_SYSTEMACE_BASE+off))
> +#define ace_readw(off) (in16(CFG_SYSTEMACE_BASE+off))
> +#define ace_writew(val, off) (out16(CFG_SYSTEMACE_BASE+off,val))
> #endif
>
> /* */
> @@ -119,6 +119,14 @@ block_dev_desc_t *systemace_get_dev(int dev)
> systemace_dev.removable = 1;
> systemace_dev.block_read = systemace_read;
>
> +#if (CFG_SYSTEMACE_WIDTH == 16)
> + /*
> + * By default the SystemACE comes up in 8-bit mode.
> + * Ensure that 16-bit mode gets enabled.
> + */
> + ace_writew(0x0001, 0);
> +#endif
> +
I've got a similar patch in my tree; How about something like this instead:
ace_writew(CFG_SYSTEMACE_WIDTH == 8 ? 0 : 0x0001, 0);
That way it handles both conditions; 8 when it should be 16, and 16
when it should be 8
> init_part(&systemace_dev);
>
> }
> @@ -197,7 +205,7 @@ static unsigned long systemace_read(int dev, unsigned long start,
> #endif
> /* Write LBA block address */
> ace_writew((start >> 0) & 0xffff, 0x10);
> - ace_writew((start >> 16) & 0x00ff, 0x12);
> + ace_writew((start >> 16) & 0x0fff, 0x12);
Good catch!
Cheers,
g.
--
Grant Likely, B.Sc. P.Eng.
Secret Lab Technologies Ltd.
grant.likely at secretlab.ca
(403) 399-0195
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot-Users] [PATCH] Update SystemACE driver for 16bit access
2007-02-21 16:25 ` Grant Likely
@ 2007-02-21 19:58 ` Stefan Roese
0 siblings, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2007-02-21 19:58 UTC (permalink / raw)
To: u-boot
On Wednesday 21 February 2007 17:25, Grant Likely wrote:
> > @@ -119,6 +119,14 @@ block_dev_desc_t *systemace_get_dev(int dev)
> > systemace_dev.removable = 1;
> > systemace_dev.block_read = systemace_read;
> >
> > +#if (CFG_SYSTEMACE_WIDTH == 16)
> > + /*
> > + * By default the SystemACE comes up in 8-bit mode.
> > + * Ensure that 16-bit mode gets enabled.
> > + */
> > + ace_writew(0x0001, 0);
> > +#endif
> > +
>
> I've got a similar patch in my tree; How about something like this
> instead:
>
> ace_writew(CFG_SYSTEMACE_WIDTH == 8 ? 0 : 0x0001, 0);
>
> That way it handles both conditions; 8 when it should be 16, and 16
> when it should be 8
Even better. Will update my version.
Best regards,
Stefan
=====================================================================
DENX Software Engineering GmbH, HRB 165235 Munich, CEO: Wolfgang Denk
Office: Kirchenstr. 5, D-82194 Groebenzell, Germany
=====================================================================
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-02-21 19:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-20 12:33 [U-Boot-Users] [PATCH] Update SystemACE driver for 16bit access Stefan Roese
2007-02-21 16:25 ` Grant Likely
2007-02-21 19:58 ` Stefan Roese
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox