public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Łukasz Dałek" <luk0104@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200
Date: Sat, 22 Sep 2012 20:07:27 +0200	[thread overview]
Message-ID: <505DFE5F.7090609@gmail.com> (raw)
In-Reply-To: <201209222000.30366.marex@denx.de>

On 22.09.2012 20:00, Marek Vasut wrote:
> Dear ?ukasz Da?ek,
>
>> On 22.09.2012 19:04, Marek Vasut wrote:
>>> Dear ?ukasz Da?ek,
>>>
>>>> On 19.09.2012 23:02, Marek Vasut wrote:
>>>>>> and at the offset
>>>>>> + * 0x40 ascii characters 'ECEC', secondly 1st stage
>>>>>> + * loads code from flash into SDRAM at address 0xa0040000
>>>>>> + * so all instructions which reinitializes memory
>>>>>> + * controller have to be disabled.
>>>>>> + */
>>>>>> +
>>>>>> +static inline void writelrb(uint32_t val, uint32_t addr)
>>>>> Replace this with clrsetbits_le32()
>>>> I've copied writelrb and pxa2xx_dram_init from pxa2xx.c
>>>> and I think there is a reason why it's done that way and not by
>>>> clrsetbits_le32. But if you insist I can replace all calls to writelrb
>>>> by clrsetbits.
>>> And can you elaborate on the reason please?
>>>
>>> (hint: clrsetbits() wasn't there by the time)
>> I don't know what was the reason. I didn't change becuse I didn't
>> want to break it.
> If you have time, replace it with clrsetbits() please ... in the original file.

In arch/arm/cpu/pxa/pxa2xx.c?

>>>>>> +{
>>>>>> +	writel(val, addr);
>>>>>> +	asm volatile("" : : : "memory");
>>>>>> +	readl(addr);
>>>>>> +	asm volatile("" : : : "memory");
>>>>>> +}
>>>>>> +
>>>>>> +static void h2200_pxa2xx_dram_init(void)
>>>>> Why do you duplicate it ?!
>>>>>
>>>>> [...]
>>>> Because code in pxa2xx.c disable and then re-enable memory.
>>>> And u-boot is executed from memory (1st stage bootloder
>>>> copied it there).
>>> So don't reinit the memory at all, just skip this whole part.
>> 1st stage loader doesn't init everything (for example MSC).
> So I checked ... every board calls the dram init on it's own in dram_init() ...
> so just don't do that.

Do what? Don't call modified pxa2xx_dram_init?

>
>>>>> +
>>>>> +# define CONFIG_USB_ETHER		1
>>>>> +# define CONFIG_USBNET_DEV_ADDR		"de:ad:be:ef:00:01"
>>>>> +# define CONFIG_USBNET_HOST_ADDR	"de:ad:be:ef:00:02"
>>>>> Definitelly not, any mac address setting should not be present, Joe ?
>>>> So tell me how should I specify mac addresses? By EXTRA_ENV_SETTINGS?
>>> Joe explained it, your adapter doesn't carry it's own mac?
>> No.
> Then leave it in ?

leave CONFIG_USBNET_DEV_ADDR...?

?ukasz Da?ek

  reply	other threads:[~2012-09-22 18:07 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-19 19:38 [U-Boot] [PATCH 0/6] iPAQ h2200 support Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 1/6] h2200: Add support for iPAQ h2200 Łukasz Dałek
2012-09-19 21:02   ` Marek Vasut
     [not found]     ` <505A3B2B.6080907@gmail.com>
2012-09-19 21:43       ` Marek Vasut
2012-09-19 21:54         ` Łukasz Dałek
2012-09-19 22:01           ` Marek Vasut
2012-09-19 22:16             ` Łukasz Dałek
2012-09-19 22:42               ` Marek Vasut
2012-09-19 22:51                 ` Łukasz Dałek
2012-09-19 22:56                   ` Marek Vasut
2012-09-19 23:07                     ` Łukasz Dałek
2012-09-19 23:09                       ` Marek Vasut
2012-09-19 23:20                         ` Łukasz Dałek
2012-09-19 23:25                           ` Marek Vasut
2012-09-19 23:36                             ` Łukasz Dałek
2012-09-19 23:43                               ` Marek Vasut
2012-09-19 23:51                                 ` Łukasz Dałek
2012-09-20  0:06                                   ` Marek Vasut
2012-09-20  5:49     ` Joe Hershberger
2012-09-20 12:14       ` Marek Vasut
2012-09-22 17:02     ` Łukasz Dałek
2012-09-22 17:04       ` Marek Vasut
2012-09-22 17:16         ` Łukasz Dałek
2012-09-22 18:00           ` Marek Vasut
2012-09-22 18:07             ` Łukasz Dałek [this message]
2012-09-22 18:21               ` Marek Vasut
2012-09-22 18:34                 ` Łukasz Dałek
2012-09-22 18:37                   ` Marek Vasut
2012-09-22 18:47                     ` Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 2/6] pxa25x: Add USB Ethernet driver Łukasz Dałek
2012-09-19 21:03   ` Marek Vasut
     [not found]     ` <505A386D.7080302@gmail.com>
2012-09-19 21:39       ` Marek Vasut
2012-09-19 19:38 ` [U-Boot] [PATCH 3/6] pxa: Add some stuff to examine cpu model and rev Łukasz Dałek
2012-09-19 21:04   ` Marek Vasut
2012-09-19 19:38 ` [U-Boot] [PATCH 4/6] usbether: Fixed bug when using with PXA25X chips Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 5/6] usbether: Define CONFIG_USB_ETH_{CDC,SUBSET} Łukasz Dałek
2012-09-19 19:38 ` [U-Boot] [PATCH 6/6] usbether: Removed DEV_CONFIG_{CDC,SUBSET} Łukasz Dałek
2012-09-19 23:10 ` [U-Boot] [PATCH 0/6] iPAQ h2200 support Marek Vasut
2012-09-20  6:36 ` Andreas Bießmann

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=505DFE5F.7090609@gmail.com \
    --to=luk0104@gmail.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