public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stephen Warren <swarren@wwwdotorg.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 1/7] Tegra30: Add arch-tegra30 include files
Date: Mon, 03 Dec 2012 17:22:58 -0700	[thread overview]
Message-ID: <50BD4262.9050505@wwwdotorg.org> (raw)
In-Reply-To: <1354578322-1834-2-git-send-email-twarren@nvidia.com>

On 12/03/2012 04:45 PM, Tom Warren wrote:
> Common Tegra files are in arch-tegra, shared between T20 and T30.
> Tegra30-specific headers are in arch-tegra30. Note that some of
> these will be filled in as more T30 support is added (drivers,
> WB/LP0 support, etc.). A couple of Tegra20 files were changed
> to support common headers in arch-tegra, also.

> diff --git a/arch/arm/include/asm/arch-tegra/tegra.h b/arch/arm/include/asm/arch-tegra/tegra.h

> +/*
> + * These are used to distinguish SOC types for setting up clocks. Mostly
> + * we can tell the clocking required by looking at the SOC sku_id, but
> + * for T30 it is a user option as to whether to run PLLP in fast or slow
> + * mode, so we have two options there.
> + */
>  enum {
>  	TEGRA_SOC_T20,
>  	TEGRA_SOC_T25,
> +	TEGRA_SOC_T30,
> +	TEGRA_SOC_T30_408MHZ,   /* A T30 with faster PLLP */
> +	TEGRA_SOC2_SLOW,	/* T2x needs to run at slow clock initially */
>  
> -	TEGRA_SOC_COUNT,
> +	TEGRA_SOC_CNT,
>  	TEGRA_SOC_UNKNOWN	= -1,
>  };

Can you remind me why TEGRA_SOC_T30_408MHZ exists; isn't it a SW thing
whereas this enum is meant to be identifying the HW?

> diff --git a/arch/arm/include/asm/arch-tegra30/funcmux.h b/arch/arm/include/asm/arch-tegra30/funcmux.h

> +/* Configs supported by the func mux */
> +enum {
> +	FUNCMUX_DEFAULT = 0,	/* default config */
> +
> +	/* UART configs */
> +	FUNCMUX_UART1_ULPI = 0,

funcmux isn't going to be remotely useful for Tegra30. There are
something like 460 possible ways of muxing out (IIRC) just a 4-pin UART
A on Tegra30. That's why when I was defining the proposed ODMDATA2
representation of UART pinmux for the Tegra30 BCT, I didn't have a
single enum covering the entire UART configuration, but rather a 4-bit
field per signal (RXD, TXD, RTS, CTS) that indicated which of the
possible pins to route it to.

Still, I guess having the initial port use funcmux is fine since we only
need to support 1 option for now. We'll hopefully just convert it to use
the BCT ODMDATA2 format rather quickly.

A similar comment will probably apply to any other peripheral on Tegra30.

  reply	other threads:[~2012-12-04  0:22 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-03 23:45 [U-Boot] [PATCH v2 0/7] Add support for NVIDIA Tegra30 SoC Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 1/7] Tegra30: Add arch-tegra30 include files Tom Warren
2012-12-04  0:22   ` Stephen Warren [this message]
2012-12-04 17:42     ` Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 2/7] Tegra30: Add AVP (arm720t) files Tom Warren
2012-12-04  0:34   ` Stephen Warren
2012-12-04 17:47     ` Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 3/7] Tegra30: Add CPU (armv7) files Tom Warren
2012-12-04  0:36   ` Stephen Warren
2012-12-03 23:45 ` [U-Boot] [PATCH V2 4/7] Tegra30: Add common CPU (shared) files Tom Warren
2012-12-05 20:37   ` Stephen Warren
2012-12-05 21:32     ` Tom Warren
2012-12-05 21:38       ` Stephen Warren
2012-12-05 21:43         ` Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 5/7] Tegra30: Cardhu: Add DT files Tom Warren
2012-12-04  0:40   ` Stephen Warren
2012-12-04  0:49     ` Simon Glass
2012-12-04  0:57       ` Stephen Warren
2012-12-04  1:01         ` Simon Glass
2012-12-04 20:29           ` Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 6/7] Tegra30: Add generic Tegra30 build support Tom Warren
2012-12-04  0:42   ` Stephen Warren
2012-12-04 19:48     ` Tom Warren
2012-12-03 23:45 ` [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board) Tom Warren
2012-12-04  0:53   ` Stephen Warren
2012-12-04 20:22     ` Tom Warren
2012-12-04 20:40       ` Lucas Stach
2012-12-04 21:28         ` Tom Warren
2012-12-04 22:41         ` Stephen Warren
2012-12-08 20:00           ` Simon Glass
2012-12-10 17:05             ` Tom Warren
2012-12-10 19:04               ` Simon Glass
2012-12-04 22:43       ` Stephen Warren
2012-12-05 20:30         ` Tom Warren
2012-12-04  0:07 ` [U-Boot] [PATCH v2 0/7] Add support for NVIDIA Tegra30 SoC Stephen Warren

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=50BD4262.9050505@wwwdotorg.org \
    --to=swarren@wwwdotorg.org \
    --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