Re: [U-Boot] [PATCH 3/6] tegra: Add a function mux feature

2011-11-28 Thread Simon Glass
Hi Stephen, On Mon, Nov 28, 2011 at 11:42 AM, Stephen Warren wrote: > On 11/28/2011 12:19 PM, Simon Glass wrote: >> Hi Stephen, >> >> On Mon, Nov 28, 2011 at 10:17 AM, Stephen Warren wrote: >>> On 11/23/2011 03:59 PM, Simon Glass wrote: funcmux permits selection of config options for partic

Re: [U-Boot] [PATCH 3/6] tegra: Add a function mux feature

2011-11-28 Thread Stephen Warren
On 11/28/2011 12:19 PM, Simon Glass wrote: > Hi Stephen, > > On Mon, Nov 28, 2011 at 10:17 AM, Stephen Warren wrote: >> On 11/23/2011 03:59 PM, Simon Glass wrote: >>> funcmux permits selection of config options for particular peripherals, >>> such as the pins that are used for that peripheral, if

Re: [U-Boot] [PATCH 3/6] tegra: Add a function mux feature

2011-11-28 Thread Simon Glass
Hi Stephen, On Mon, Nov 28, 2011 at 10:17 AM, Stephen Warren wrote: > On 11/23/2011 03:59 PM, Simon Glass wrote: >> funcmux permits selection of config options for particular peripherals, >> such as the pins that are used for that peripheral, if there are several >> options. Thanks for looking a

Re: [U-Boot] [PATCH 3/6] tegra: Add a function mux feature

2011-11-28 Thread Stephen Warren
On 11/23/2011 03:59 PM, Simon Glass wrote: > funcmux permits selection of config options for particular peripherals, > such as the pins that are used for that peripheral, if there are several > options. > > Add UART selection to start with. > +static void enable_uart(enum periph_id pid) > +{ > +

Re: [U-Boot] [PATCH 3/6] tegra: Add a function mux feature

2011-11-23 Thread Mike Frysinger
On Wednesday 23 November 2011 17:59:05 Simon Glass wrote: > --- /dev/null > +++ b/arch/arm/cpu/armv7/tegra2/funcmux.c > > +void funcmux_select(enum periph_id id, int func) > +{ > + switch (id) { > + case PERIPH_ID_UART1: > + pinmux_set_func(PINGRP_IRRX, PMUX_FUNC_UARTA); > +