public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Ian Campbell <ijc@hellion.org.uk>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 6/6] dm: sunxi: Add support for serial using driver model
Date: Thu, 30 Oct 2014 10:14:55 +0000	[thread overview]
Message-ID: <1414664095.2064.23.camel@hellion.org.uk> (raw)
In-Reply-To: <545206A3.4030301@redhat.com>

On Thu, 2014-10-30 at 10:36 +0100, Hans de Goede wrote:
> Hi,
> 
> On 10/30/2014 10:08 AM, Ian Campbell wrote:
> > On Wed, 2014-10-29 at 13:28 -0600, Simon Glass wrote:
> >>> In the meantime could we somehow replace/augment the #ifdef chain in
> >>> gpio_init with something keyed off the stdout alias perhaps?
> >>
> >> Tegra has code to convert a device interrupt number (which uniquely
> >> identifies a peripheral in that SoC) to an internal peripheral ID,
> >> then these is a function which can enable a peripheral given the ID
> >> (funcmux). In some cases you could have multiple options for the
> >> funcmux, but there is no easy way to support this.
> > 
> > I think that although there are multiple options for some functions
> > (UARTs come to mind) we haven't yet found the need to make any dynamic
> > choices, so it's all static right now.
> > 
> >>  But this approach
> >> might be good enough for sunxi. We can easily write the function to
> >> enable the pins for a particular port, and this could go in
> >> arch/arm/...sunxi/ perhaps.
> > 
> > I'm ok with it so long as it isn't going to stand in the way of proper
> > dt based pinmux in the future.
> > 
> > One way to help with that might be to use the allwinner,function
> > property in DT as the funcmux name.
> > 
> > Hans, what do you think?
> 
> I'm not 100% sure what you're suggesting here, are you suggesting to
> have a 1:1 mapping between function names as stored in allwinner,function
> in dts and the value to pass to sunxi_gpio_set_cfgpin ?

I was imagining a function which would take the string "uart0" and would
call sunxi_gpio_set_cfgpin with whatever values that would entail in
order to make uart0 work, not one which would try and return something
that the caller would then use.

> This is not going to fly very far, e.g. the "uart0" function has cfg value
> of 2 on portb while it has a value of 4 on portf.

I believe we currently statically use either portb or portf (I've not
looked up which, IIRC it changed recently, but I don't recall which
way), so my proposed function would just DTRT. Of course if we ever find
we need something more dynamic then we would have to do a proper pinmux
implementation (or at least something closer to a proper one)

Ian.

  reply	other threads:[~2014-10-30 10:14 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-23  4:02 [U-Boot] [PATCH v2 0/6] dm: Introduce driver model for sunxi Simon Glass
2014-10-23  4:02 ` [U-Boot] [PATCH v2 1/6] dm: sunxi: dts: Add sun7i device tree files Simon Glass
2014-10-24  8:32   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-28  1:05     ` Simon Glass
2014-10-23  4:02 ` [U-Boot] [PATCH v2 2/6] dm: sunxi: Add a new config for an FDT-based pcDuino3 Simon Glass
2014-10-24  8:38   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-28  0:04     ` Simon Glass
2014-10-28  9:13       ` Hans de Goede
2014-10-29  3:02         ` Simon Glass
2014-10-29  9:32           ` Hans de Goede
2014-10-29 19:30             ` Simon Glass
2014-10-30  8:36               ` Hans de Goede
2014-10-23  4:02 ` [U-Boot] [PATCH v2 3/6] dm: sunxi: Add pinmux functions which take a bank parameter Simon Glass
2014-10-24  9:00   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-23  4:02 ` [U-Boot] [PATCH v2 4/6] dm: sunxi: Make sure that GPIOs are requested Simon Glass
2014-10-24  9:01   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-23  4:02 ` [U-Boot] [PATCH v2 5/6] dm: sunxi: Modify the GPIO driver to support driver model Simon Glass
2014-10-24  9:08   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-28  0:05     ` Simon Glass
2014-10-28  2:53       ` Chen-Yu Tsai
2014-10-28  3:29         ` Simon Glass
2014-10-28  3:39           ` Chen-Yu Tsai
2014-10-28 14:30             ` Maxime Ripard
2014-10-23  4:02 ` [U-Boot] [PATCH v2 6/6] dm: sunxi: Add support for serial using " Simon Glass
2014-10-24  9:10   ` [U-Boot] [U-Boot, v2, " Hans de Goede
2014-10-24  9:42   ` [U-Boot] [PATCH v2 " Ian Campbell
2014-10-28  0:06     ` Simon Glass
2014-10-29  8:05       ` Ian Campbell
2014-10-29 19:28         ` Simon Glass
2014-10-30  9:08           ` Ian Campbell
2014-10-30  9:36             ` Hans de Goede
2014-10-30 10:14               ` Ian Campbell [this message]
2014-10-31  2:45                 ` Simon Glass
2014-10-31  9:07                 ` Hans de Goede
2014-10-31  9:30                   ` Ian Campbell
2014-10-31  9:33                     ` Hans de Goede
2014-10-31  9:55                       ` Ian Campbell

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=1414664095.2064.23.camel@hellion.org.uk \
    --to=ijc@hellion.org.uk \
    --cc=u-boot@lists.denx.de \
    /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