public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] zynq: ignore ps7_init.h
@ 2014-05-08  8:13 Masahiro Yamada
  2014-05-08  8:27 ` Michal Simek
  0 siblings, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2014-05-08  8:13 UTC (permalink / raw)
  To: u-boot

ps_init.h should be ignored because it is supposed to
be copied from an external project.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Michal Simek <michal.simek@xilinx.com>
---
 board/xilinx/zynq/.gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 board/xilinx/zynq/.gitignore

diff --git a/board/xilinx/zynq/.gitignore b/board/xilinx/zynq/.gitignore
new file mode 100644
index 0000000..5255763
--- /dev/null
+++ b/board/xilinx/zynq/.gitignore
@@ -0,0 +1 @@
+ps7_init.h
-- 
1.8.3.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] zynq: ignore ps7_init.h
  2014-05-08  8:13 [U-Boot] [PATCH] zynq: ignore ps7_init.h Masahiro Yamada
@ 2014-05-08  8:27 ` Michal Simek
  2014-05-08  9:21   ` Masahiro Yamada
  0 siblings, 1 reply; 5+ messages in thread
From: Michal Simek @ 2014-05-08  8:27 UTC (permalink / raw)
  To: u-boot

On 05/08/2014 10:13 AM, Masahiro Yamada wrote:
> ps_init.h should be ignored because it is supposed to
> be copied from an external project.
> 
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Cc: Michal Simek <michal.simek@xilinx.com>
> ---
>  board/xilinx/zynq/.gitignore | 1 +
>  1 file changed, 1 insertion(+)
>  create mode 100644 board/xilinx/zynq/.gitignore
> 
> diff --git a/board/xilinx/zynq/.gitignore b/board/xilinx/zynq/.gitignore
> new file mode 100644
> index 0000000..5255763
> --- /dev/null
> +++ b/board/xilinx/zynq/.gitignore
> @@ -0,0 +1 @@
> +ps7_init.h
> 

Here is just one question if we should also ignore ps7_init.c too.
It means move current ps7_init weak function to spl.c in mach-zynq
and just compile ps7_init.c in board file if it is available there.

Is there any nice hook in Kbuild to compile file if it is available?

Something like
[ -f ps7_init.c ] && compile it

Then we can just move weak function
and ignore ps7_init.c/h files in board file.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 263 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140508/15ebd4c3/attachment.pgp>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] zynq: ignore ps7_init.h
  2014-05-08  8:27 ` Michal Simek
@ 2014-05-08  9:21   ` Masahiro Yamada
  2014-05-08 12:00     ` Michal Simek
  0 siblings, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2014-05-08  9:21 UTC (permalink / raw)
  To: u-boot

Hi Michal,

> 
> Here is just one question if we should also ignore ps7_init.c too.
> It means move current ps7_init weak function to spl.c in mach-zynq
> and just compile ps7_init.c in board file if it is available there.
> 
> Is there any nice hook in Kbuild to compile file if it is available?
> 
> Something like
> [ -f ps7_init.c ] && compile it

Nice suggestion!


> Then we can just move weak function
> and ignore ps7_init.c/h files in board file.
> 

This might not be beautiful very much, but
we can write board/xilinx/zynq/Makefile like this:

obj-y	:= board.o
obj-$(CONFIG_SPL_BUILD)	+= $(if $(wildcard $(srctree)/$(src)/ps7_init.c),ps7_init.o)



Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] zynq: ignore ps7_init.h
  2014-05-08  9:21   ` Masahiro Yamada
@ 2014-05-08 12:00     ` Michal Simek
  2014-05-08 12:32       ` Masahiro Yamada
  0 siblings, 1 reply; 5+ messages in thread
From: Michal Simek @ 2014-05-08 12:00 UTC (permalink / raw)
  To: u-boot

On 05/08/2014 11:21 AM, Masahiro Yamada wrote:
> Hi Michal,
> 
>>
>> Here is just one question if we should also ignore ps7_init.c too.
>> It means move current ps7_init weak function to spl.c in mach-zynq
>> and just compile ps7_init.c in board file if it is available there.
>>
>> Is there any nice hook in Kbuild to compile file if it is available?
>>
>> Something like
>> [ -f ps7_init.c ] && compile it
> 
> Nice suggestion!
> 
> 
>> Then we can just move weak function
>> and ignore ps7_init.c/h files in board file.
>>
> 
> This might not be beautiful very much, but
> we can write board/xilinx/zynq/Makefile like this:
> 
> obj-y	:= board.o
> obj-$(CONFIG_SPL_BUILD)	+= $(if $(wildcard $(srctree)/$(src)/ps7_init.c),ps7_init.o)

If this is acceptable by others I am quite happy to use it
because it seems to me like a good way how to handle it.

In future when everything is ready I expect that these ps7_init.c/h
files will go away and information will be read directly from DTS
but we are not there yet.

Anyway: Can you please prepare that patches? I am quite happy to test them
and adding it to my zynq queue and send it to Albert.

Or do you want me to prepare them?

Thanks,
Michal


-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 263 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140508/e17bb3c5/attachment.pgp>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] zynq: ignore ps7_init.h
  2014-05-08 12:00     ` Michal Simek
@ 2014-05-08 12:32       ` Masahiro Yamada
  0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2014-05-08 12:32 UTC (permalink / raw)
  To: u-boot

Hi Michal,


> > obj-y	:= board.o
> > obj-$(CONFIG_SPL_BUILD)	+= $(if $(wildcard $(srctree)/$(src)/ps7_init.c),ps7_init.o)
> 
> If this is acceptable by others I am quite happy to use it
> because it seems to me like a good way how to handle it.
> 
> In future when everything is ready I expect that these ps7_init.c/h
> files will go away and information will be read directly from DTS
> but we are not there yet.
> 
> Anyway: Can you please prepare that patches? 

Sure.
Please check out
http://patchwork.ozlabs.org/patch/347023/


Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-08 12:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-08  8:13 [U-Boot] [PATCH] zynq: ignore ps7_init.h Masahiro Yamada
2014-05-08  8:27 ` Michal Simek
2014-05-08  9:21   ` Masahiro Yamada
2014-05-08 12:00     ` Michal Simek
2014-05-08 12:32       ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox