[U-Boot] [PATCH 0/3] Add generic FDT memory bank decoding and gd initialization

Michal Simek michal.simek at xilinx.com
Mon Dec 12 12:56:47 CET 2016


On 12.12.2016 12:10, Igor Grinberg wrote:
> On 12/12/16 11:03, Michal Simek wrote:
>> On 12.12.2016 09:54, Igor Grinberg wrote:
>>> On 12/12/16 10:27, Michal Simek wrote:
>>>> On 12.12.2016 09:24, Igor Grinberg wrote:
>>>>> On 12/12/16 10:02, Michal Simek wrote:
>>>>>> On 12.12.2016 08:13, Nathan Rossi wrote:
>>>>>>> On 12 December 2016 at 03:11, Igor Grinberg <grinberg at compulab.co.il> wrote:
>>>>>>>> dropping the list for this one as the question seems to me irrelevant to your patch set.
>>>>>>>>
>>>>>>>> On 12/11/16 18:47, Nathan Rossi wrote:
>>>>>>>>> On 12 December 2016 at 01:08, Igor Grinberg <grinberg at compulab.co.il> wrote:
>>>>>>>>>> Hi Nathan,
>>>>>>>>>>
>>>>>>>>>> On 12/11/16 15:58, Nathan Rossi wrote:
>>>>>>>>>>> This series adds two functions for handling the memory bank decoding and
>>>>>>>>>>> initialization of global data for use by boards in their dram_init and
>>>>>>>>>>> dram_init_banksize functions.
>>>>>>>>>>
>>>>>>>>>> I might have missed some discussions on this meter,
>>>>>>>>>> can you please provide the use cases for this?
>>>>>>>>>> IMO, the bootloader's job is to initialize the DRAM, detect its size, and pass
>>>>>>>>>> the detected DRAM configuration on to an OS.
>>>>>>>>>
>>>>>>>>> Hi Igor,
>>>>>>>>>
>>>>>>>>> I do not think there have been any discussions on this (at least none
>>>>>>>>> that I am aware of).
>>>>>>>>>
>>>>>>>>> Some boards (like Zynq and ZynqMP ones) are using
>>>>>>>>> CONFIG_SYS_SDRAM_SIZE to define the amount of memory that is available
>>>>>>>>> (since detection is not possible).
>>>>>>>>
>>>>>>>> May I ask why is detection not possible on these boards (may be SoCs)?
>>>>>>>
>>>>>>> That is correct, Zynq and ZynqMP are ARM SoCs. Which in the majority
>>>>>>> of cases are used in boards which have fixed memory device setups
>>>>>>> (without any SPD or equivalent).
>>>>>>
>>>>>> For example zcu102 zynqmp development board is using modules with SPD on
>>>>>> it but if you look at generic SPD support then you will find out that
>>>>>> FSL(drivers/ddr/fsl) is one of the major platform which is using it for
>>>>>> ddr size detection.
>>>>>> Anyway as Nathan wrote above the majority of boards with zynq/zynqmp
>>>>>> devices need to be configured at build time or at run time by DTB.
>>>>>>
>>>>>> There is also topic.nl boards which contain ddr configuration the same
>>>>>> for different ddr sizes and Mike sent this patch to get it work
>>>>>> http://lists.denx.de/pipermail/u-boot/2016-November/273385.html
>>>>>
>>>>> That's exactly my point. I think Mike's patch does a way better job
>>>>> detecting at run time than any compiled in or a DT based pseudo detection...
>>>>>
>>>>>>
>>>>>> Anyway in general there are some ways how to configure DDR size
>>>>>> - build time setup (CONFIG_SYS_SDRAM*)
>>>>>> - run time setup
>>>>>> 	- ddr detection
>>>>>> 		- via SPD (like FSL)
>>>>>> 		- via algorithm (like topic.nl)
>>>>>> 	- configuration
>>>>>> 		- read DTB
>>>>>>
>>>>>> Nathan's path is trying to address last run time DTB configuration
>>>>>> method to be shared across platforms because similar stuff Uniphier is
>>>>>> using too. And it doesn't make sense to copy that functions everywhere
>>>>>> that's why this should go core parts.
>>>>>
>>>>> Yep. That's exactly what I thought. I see Nathan's patch set as an
>>>>> improvement of the current situation anyway.
>>>>>
>>>>> Also I think Mike's patch does a much better job on this.
>>>>>
>>>>
>>>> Just keep in your mind just in case that you know that your
>>>> configuration supports it. If you don't have DDR connected to hard block
>>>> and you use ddr to PL you don't even know where to look for DDR.
>>>> And with arm64 it is pretty huge space.
>>>
>>> I see this as exactly the type of information that should be provided by
>>> the board code or a dtb.
>>
>> I tend to remove all board files for zynq/zynqmp targets. Will see how
>> we can do it in future.
> 
> This is not really related to current thread...

not directly but there is a connection.

> I'm not sure how this can be done... We're in a bootloader world here...
> It should be board specific by definition...
> There should be board specific code (not static data) somewhere, and
> I think we had agreed a year or so ago... on this meter.
> I think if you go this way, we will end up having board specific middleware
> all around... and lots of tools for changing the static data (e.g. dtbs).

Look at microblaze. I am not accepting any board to be added for it
because every configuration is different. The same can be done for
zynq/zynqmp boards when we move stuff to DM.
Then for supporting new platform you don't need to create folder in
board and file include/configs/ and all you need is dts file and
defconfig. In case of SPL for us we need to also put somewhere ps7*/psu*
init files.
DT is design to describe hardware and current configuration which I
believe we can.
There is also DT overlay stuff which has been merged recently.
All this together is going to end up in situation that you will have
generic hardcoded config for core stuff and the rest in DTS file.

In connection to this thread. If you have all ddr start/size algorithms
prepared then you can probably select them via defconfig because static
part is board specific which means it should go to Kconfig/defconfig.

Thanks,
Michal


More information about the U-Boot mailing list