From: Bryan Wu <bryan.wu@analog.com>
To: Jeff Garzik <jeff@garzik.org>
Cc: Mike Frysinger <vapier.adi@gmail.com>,
Sonic Zhang <sonic.adi@gmail.com>,
Linux IDE <linux-ide@vger.kernel.org>,
Linux Kernel <linux-kernel@vger.kernel.org>,
Bryan Wu <bryan.wu@analog.com>
Subject: Re: [PATCH take #5] [libata] libata driver for bf548 on chip ATAPI controller.
Date: Fri, 17 Aug 2007 10:18:26 +0800 [thread overview]
Message-ID: <1187317106.12314.6.camel@roc-desktop> (raw)
In-Reply-To: <46C49DD6.9050508@garzik.org>
On Thu, 2007-08-16 at 14:56 -0400, Jeff Garzik wrote:
> Mike Frysinger wrote:
> > On 8/16/07, Jeff Garzik <jeff@garzik.org> wrote:
> >> Mike Frysinger wrote:
> >>> On 8/16/07, Jeff Garzik <jeff@garzik.org> wrote:
> >>>> Sonic Zhang wrote:
> >>>>> +static void bfin_set_piomode(struct ata_port *ap, struct ata_device *adev)
> >>>>> +{
> >>>>> + int mode = adev->pio_mode - XFER_PIO_0;
> >>>>> + unsigned long base = (unsigned long)ap->ioaddr.ctl_addr;
> >>>> (added Bryan Wu to CC)
> >>>>
> >>>> Someone needs to need fix the bfin architecture: the addresses on the
> >>>> bfin_read/bfin_write functions should be 'void __iomem *' not unsigned long.
> >>> there are no address pointers anymore, so there is nothing to cast ...
> >>> the bfin_read/bfin_write macros are done in sexy asm:
> >>> #define bfin_write8(addr,val) __asm__ __volatile__("b[%0] = %1;" ::
> >>> "a"(addr), "d"(val))
> >>> or i'm misunderstanding what you mean ...
> >>>
> >>> where do you see (unsigned long) ?
> >> Look up (into the message you quoted).
> >
> > yes, you quoted the driver, not the Blackfin core parts
> >
> >> Regardless of the implementation, the C type system should be employed
> >> to ensure that 'addr' is known to the compiler as 'void __iomem *'
> >> rather than unsigned long.
> >
> > i agree the specific pata driver should be declared the way you
> > described, however i dont see how that has bearing on the
> > bfin_read/bfin_write macros as you seemed to indicate
>
> Macros completely ignore the C type system. Look at other architectures
> if you cannot figure out how to implement a static inline with stronger
> typing.
>
> Jeff
>
Yes, Jeff is right. Type checking in C is very useful.
So,
a) our register access function: bfin_read8/16/32 and bfin_write8/16/32
macros should be change to inline functions.
b) the "addr" should be defined as "void __iomem *"
c) in these functions it may use the sexy asm stuff
How do you think of this, Mike? And am I right, Jeff?
Thanks
- Bryan Wu
>
prev parent reply other threads:[~2007-08-17 2:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-15 9:14 [PATCH take #5] [libata] libata driver for bf548 on chip ATAPI controller Sonic Zhang
2007-08-15 10:06 ` Alan Cox
2007-08-16 7:04 ` Jeff Garzik
2007-08-16 16:27 ` Mike Frysinger
2007-08-16 18:40 ` Jeff Garzik
2007-08-16 18:46 ` Mike Frysinger
2007-08-16 18:56 ` Jeff Garzik
2007-08-17 2:18 ` Bryan Wu [this message]
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=1187317106.12314.6.camel@roc-desktop \
--to=bryan.wu@analog.com \
--cc=jeff@garzik.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sonic.adi@gmail.com \
--cc=vapier.adi@gmail.com \
/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;
as well as URLs for NNTP newsgroup(s).