public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Hans de Goede <hdegoede@redhat.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/9] sunxi: Convert Linksprite_pcDuino_defconfig to use auto dram configuration
Date: Sun, 18 Jan 2015 17:47:36 +0100	[thread overview]
Message-ID: <54BBE3A8.80007@redhat.com> (raw)
In-Reply-To: <1421598294.13341.35.camel@hellion.org.uk>

Hi,

On 18-01-15 17:24, Ian Campbell wrote:
> On Sun, 2015-01-18 at 13:23 +0100, Hans de Goede wrote:
>> Currently we've separate detailed dram settings for all sun4i boards, this
>> moves them
>
> There's only one board here, did you intend for the next patch to be
> folder with this one as a bulk switch? Or is there something
> particularly interesting about this one?

The only thing special about this board is that it is the only currently
supported sun4i board which I do not have :)

I'm waiting for Zoltan to get back to me with testing results and then I
can add his Tested-by, I can squash it into the next patch and add his
Tested-by there, I guess that makes more sense.

Regards,

Hans


>
>>   over to using auto dram configuration so that we can get rid of
>> all the per board dram_foo.c files.
>>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>>   board/sunxi/Makefile                   |  2 +-
>>   board/sunxi/dram_sun4i_408_1024_iow8.c | 31 -------------------------------
>>   configs/Linksprite_pcDuino_defconfig   |  3 +++
>>   3 files changed, 4 insertions(+), 32 deletions(-)
>>   delete mode 100644 board/sunxi/dram_sun4i_408_1024_iow8.c
>>
>> diff --git a/board/sunxi/Makefile b/board/sunxi/Makefile
>> index 606bf73..0111b56 100644
>> --- a/board/sunxi/Makefile
>> +++ b/board/sunxi/Makefile
>> @@ -32,7 +32,7 @@ obj-$(CONFIG_TARGET_MELE_A1000)		+= dram_sun4i_auto.o
>>   obj-$(CONFIG_TARGET_MELE_M3)		+= dram_sun7i_384_1024_iow16.o
>>   obj-$(CONFIG_TARGET_MINI_X)		+= dram_sun4i_auto.o
>>   obj-$(CONFIG_TARGET_MSI_PRIMO73)	+= dram_sun7i_384_1024_iow16.o
>> -obj-$(CONFIG_TARGET_PCDUINO)		+= dram_sun4i_408_1024_iow8.o
>> +obj-$(CONFIG_TARGET_PCDUINO)		+= dram_sun4i_auto.o
>>   obj-$(CONFIG_TARGET_PCDUINO3)		+= dram_linksprite_pcduino3.o
>>   obj-$(CONFIG_TARGET_QT840A)		+= dram_sun7i_384_512_busw16_iow16.o
>>   obj-$(CONFIG_TARGET_R7DONGLE)		+= dram_r7dongle.o
>> diff --git a/board/sunxi/dram_sun4i_408_1024_iow8.c b/board/sunxi/dram_sun4i_408_1024_iow8.c
>> deleted file mode 100644
>> index c6d87d2..0000000
>> --- a/board/sunxi/dram_sun4i_408_1024_iow8.c
>> +++ /dev/null
>> @@ -1,31 +0,0 @@
>> -/* this file is generated, don't edit it yourself */
>> -
>> -#include <common.h>
>> -#include <asm/arch/dram.h>
>> -
>> -static struct dram_para dram_para = {
>> -	.clock = 408,
>> -	.type = 3,
>> -	.rank_num = 1,
>> -	.density = 2048,
>> -	.io_width = 8,
>> -	.bus_width = 32,
>> -	.cas = 6,
>> -	.zq = 123,
>> -	.odt_en = 0,
>> -	.size = 1024,
>> -	.tpr0 = 0x30926692,
>> -	.tpr1 = 0x1090,
>> -	.tpr2 = 0x1a0c8,
>> -	.tpr3 = 0,
>> -	.tpr4 = 0,
>> -	.tpr5 = 0,
>> -	.emr1 = 0,
>> -	.emr2 = 0,
>> -	.emr3 = 0,
>> -};
>> -
>> -unsigned long sunxi_dram_init(void)
>> -{
>> -	return dramc_init(&dram_para);
>> -}
>> diff --git a/configs/Linksprite_pcDuino_defconfig b/configs/Linksprite_pcDuino_defconfig
>> index f5b0ca9..0bf329e 100644
>> --- a/configs/Linksprite_pcDuino_defconfig
>> +++ b/configs/Linksprite_pcDuino_defconfig
>> @@ -5,3 +5,6 @@ CONFIG_FDTFILE="sun4i-a10-pcduino.dtb"
>>   +S:CONFIG_ARCH_SUNXI=y
>>   +S:CONFIG_MACH_SUN4I=y
>>   +S:CONFIG_TARGET_PCDUINO=y
>> ++S:CONFIG_DRAM_CLK=408
>> ++S:CONFIG_DRAM_ZQ=123
>> ++S:CONFIG_DRAM_EMR1=0
>
>

  parent reply	other threads:[~2015-01-18 16:47 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-18 12:23 [U-Boot] [PATCH 1/9] sunxi: axp209: Disable interrupts when intializing the axp209 Hans de Goede
2015-01-18 12:23 ` [U-Boot] [PATCH 2/9] sunxi: ba10_tv_box_defconfig: Fix USB not working Hans de Goede
2015-01-18 16:15   ` Ian Campbell
2015-01-18 12:23 ` [U-Boot] [PATCH 3/9] sunxi: Stop differentiating between 512M and 1G variants of the same board Hans de Goede
2015-01-18 16:22   ` Ian Campbell
2015-01-18 16:45     ` Hans de Goede
2015-01-18 21:46   ` Siarhei Siamashka
2015-01-19 14:35     ` Hans de Goede
2015-01-20  8:51       ` Ian Campbell
2015-01-18 12:23 ` [U-Boot] [PATCH 4/9] sunxi: Convert Linksprite_pcDuino_defconfig to use auto dram configuration Hans de Goede
2015-01-18 16:24   ` Ian Campbell
2015-01-18 16:26     ` Ian Campbell
2015-01-18 16:48       ` Hans de Goede
2015-01-18 16:47     ` Hans de Goede [this message]
2015-01-18 12:23 ` [U-Boot] [PATCH 5/9] sunxi: Convert sun4i boards " Hans de Goede
2015-01-18 16:28   ` Ian Campbell
2015-01-18 12:23 ` [U-Boot] [PATCH 6/9] sunxi: Remove CONFIG_TARGET_FOO for sun4i, sun6i and sun8i boards Hans de Goede
2015-01-18 16:31   ` Ian Campbell
2015-01-18 16:33     ` Ian Campbell
2015-01-18 16:58     ` Hans de Goede
2015-01-18 12:23 ` [U-Boot] [PATCH 7/9] sunxi: Add mk802 board / defconfig Hans de Goede
2015-01-18 16:34   ` Ian Campbell
2015-01-19 19:57     ` Hans de Goede
2015-01-18 12:23 ` [U-Boot] [PATCH 8/9] sunxi: Add mk802ii " Hans de Goede
2015-01-18 12:23 ` [U-Boot] [PATCH 9/9] sunxi: Add mk802_a10s " Hans de Goede
2015-01-18 16:15 ` [U-Boot] [PATCH 1/9] sunxi: axp209: Disable interrupts when intializing the axp209 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=54BBE3A8.80007@redhat.com \
    --to=hdegoede@redhat.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