From: Felipe Balbi <balbi@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 11/11] beagle_x15: add board support for Beagle x15
Date: Mon, 10 Nov 2014 13:43:55 -0600 [thread overview]
Message-ID: <20141110194355.GB1041@saruman> (raw)
In-Reply-To: <20141110184748.GO24724@bill-the-cat>
Hi,
On Mon, Nov 10, 2014 at 01:47:48PM -0500, Tom Rini wrote:
> On Thu, Nov 06, 2014 at 08:44:27AM -0600, Felipe Balbi wrote:
>
> > BeagleBoard-X15 is the next generation Open Source
> > Hardware BeagleBoard based on TI's AM5728 SoC
> > featuring dual core 1.5GHZ A15 processor. The
> > platform features 2GB DDR3L (w/dual 32bit busses),
> > eSATA, 3 USB3.0 ports, integrated HDMI (1920x108 at 60),
> > separate LCD port, video In port, 4GB eMMC, uSD,
> > Analog audio in/out, dual 1G Ethernet.
> >
> > For more information, refer to:
> > http://www.elinux.org/Beagleboard:BeagleBoard-X15
> >
> > Signed-off-by: Felipe Balbi <balbi@ti.com>
> > Signed-off-by: Nishanth Menon <nm@ti.com>
> [snip]
> > +static const struct emif_regs beagle_x15_ddr3_532mhz_emif_regs = {
> > + .sdram_config_init = 0x61851B32, /* dont know what to do about this */
> > + .sdram_config = 0x61851B32,
> > + .sdram_config2 = 0x00000000,
> > + .ref_ctrl = 0x00001035,
> > + .sdram_tim1 = 0xCEEF266B,
> > + .sdram_tim2 = 0x328F7FDA,
> > + .sdram_tim3 = 0x027F88A8,
> > + .read_idle_ctrl = 0x00050001, /* not sure where in gel file */
> > + .zq_config = 0x0007190B,
> > + .temp_alert_config = 0x00000000,
> > + .emif_ddr_phy_ctlr_1_init = 0x0E24400A, /* not sure what to do about this */
> > + .emif_ddr_phy_ctlr_1 = 0x0E24400A, /* based on non hw level enabled */
> > + .emif_ddr_ext_phy_ctrl_1 = 0x10040100, /* not sure wherein gel file */
> > + .emif_ddr_ext_phy_ctrl_2 = 0x00740074,
> > + .emif_ddr_ext_phy_ctrl_3 = 0x00780078,
> > + .emif_ddr_ext_phy_ctrl_4 = 0x007c007c,
> > + .emif_ddr_ext_phy_ctrl_5 = 0x007b007b,
> > + .emif_rd_wr_lvl_rmp_win = 0x00000000,
> > + .emif_rd_wr_lvl_rmp_ctl = 0x00000000, /* based on non hw level enabled */
> > + .emif_rd_wr_lvl_ctl = 0x00000000, /* not sure where based in gel file */
> > + .emif_rd_wr_exec_thresh = 0x00000305
>
> Lets either get the timing info right or comment that we expect to need
> to tweak these values again later based on production HW or something.
alright, I'll fix that. Apparently we have final timings now which I
got over the weekend, I'll try those out.
> > +static const u32 beagle_x15_ddr3_ext_phy_ctrl_const_regs[] = {
> > + 0x00800080, // 6
> > +
> > +
> > + 0x00360036, // 7
> > + 0x00340034, // 8
> > + 0x00360036, // 9
> > + 0x00350035, // 10
> > + 0x00350035, // 11
> > +
> > + 0x01ff01ff, // 12
>
> // isn't allowed and what're you counting? :)
heh, forgot to drop those. Now dropped.
> [snip]
> > +#define CONFIG_SYS_SDRAM_BASE 0x80000000
>
> Shouldn't be needed, should be set by a common header already.
dropped.
--
balbi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141110/dd549a04/attachment.pgp>
next prev parent reply other threads:[~2014-11-10 19:43 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-06 14:28 [U-Boot] [PATCH 01/11] arm: omap5: don't enable misc_init_r by default Felipe Balbi
2014-11-06 14:28 ` [U-Boot] [PATCH 02/11] arm: omap5: tps659038: rename regulator defines Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 03/11] arm: dra7xx: prcm: add missing registers Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 04/11] usb: phy: omap_usb_phy: fix build breakage Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 05/11] arm: omap-common: emif: allow to map memory without interleaving Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 06/11] configs: omap5_common : Boot rootfs from sd card by default Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 07/11] arm: omap5: make hw_init_data weak Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot,07/11] " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 08/11] arm: omap5: sdram: mark emif_get_ext_phy_ctrl_const_regs __weak Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 09/11] arm: omap_common: expose tps659038 and dra7xx_dplls Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 10/11] arm: omap: add support for am57xx devices Felipe Balbi
2014-11-10 18:47 ` Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 11/11] beagle_x15: add board support for Beagle x15 Felipe Balbi
2014-11-06 14:35 ` menon.nishanth at gmail.com
2014-11-06 14:43 ` Felipe Balbi
2014-11-06 14:44 ` [U-Boot] [PATCH v2 " Felipe Balbi
2014-11-06 14:46 ` menon.nishanth at gmail.com
2014-11-10 18:47 ` Tom Rini
2014-11-10 19:43 ` Felipe Balbi [this message]
2014-11-10 20:02 ` [U-Boot] [PATCH v3 " Felipe Balbi
2014-11-10 21:29 ` Tom Rini
2014-12-05 14:53 ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-11-10 18:47 ` [U-Boot] [PATCH 01/11] arm: omap5: don't enable misc_init_r by default Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini
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=20141110194355.GB1041@saruman \
--to=balbi@ti.com \
--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