All of lore.kernel.org
 help / color / mirror / Atom feed
* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
@ 2018-12-10 10:25 Jan Kiszka
  2018-12-11  0:30 ` Daniel Sangorrin
  0 siblings, 1 reply; 6+ messages in thread
From: Jan Kiszka @ 2018-12-10 10:25 UTC (permalink / raw)
  To: cip-dev

From: Marek Vasut <marex@denx.de>

Rename DT source for DE0 Nano SoC . The board name is really DE0-Nano-SoC
or Atlas SoC, and it is not to be confused with SoCkit board, which is a
different one. Rename the DT source file to match the board name and to
avoid this possible mixup with another different board.

Upstream commit 202eb5481421040e115526b75317b5ca72584806

This commit is needed because it aligns the device tree name of U-Boot
and kernel which helps distro boot procedures (fdtfile as set by U-Boot
will match the kernel-provided dtb).

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@kernel.org>
Cc: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

Changes in v2:
 - enhance upstream commit log with reason to adopt the patch

 arch/arm/boot/dts/Makefile                                              | 2 +-
 ...ocfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts} (100%)

diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
index e0a0deaacd48..9871a7f0f92a 100644
--- a/arch/arm/boot/dts/Makefile
+++ b/arch/arm/boot/dts/Makefile
@@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
 	socfpga_arria5_socdk.dtb \
 	socfpga_arria10_socdk_sdmmc.dtb \
 	socfpga_cyclone5_socdk.dtb \
-	socfpga_cyclone5_de0_sockit.dtb \
+	socfpga_cyclone5_de0_nano_soc.dtb \
 	socfpga_cyclone5_sockit.dtb \
 	socfpga_cyclone5_socrates.dtb \
 	socfpga_vt.dtb
diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
similarity index 100%
rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
-- 
2.16.4

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

* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
  2018-12-10 10:25 [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc} Jan Kiszka
@ 2018-12-11  0:30 ` Daniel Sangorrin
  2018-12-11  6:14   ` 小口琢夫 / KOGUCHI,TAKUO
  2018-12-11  6:17   ` Jan Kiszka
  0 siblings, 2 replies; 6+ messages in thread
From: Daniel Sangorrin @ 2018-12-11  0:30 UTC (permalink / raw)
  To: cip-dev

Koguchi-san, Jan-san:

The Deby reference implementation of CIP core contains the meta-cip-cyclonev layer. This layer is still using a separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip) created by Koguchi-san.

* What is the current status of the CIP kernel compared to that separate repository?
* Is any of you planning to backport patches to the CIP kernel 4.4?

Thanks,
Daniel

> -----Original Message-----
> From: cip-dev-bounces at lists.cip-project.org
> <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> Sent: Monday, December 10, 2018 7:25 PM
> To: cip-dev <cip-dev@lists.cip-project.org>
> Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> socfpga_cyclone5_de0_{sockit, nano_soc}
> 
> 
> 
> > -----Original Message-----
> > From: cip-dev-bounces at lists.cip-project.org
> > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > Sent: Monday, December 10, 2018 7:25 PM
> > To: cip-dev <cip-dev@lists.cip-project.org>
> > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > socfpga_cyclone5_de0_{sockit, nano_soc}
> >
> > From: Marek Vasut <marex@denx.de>
> >
> > Rename DT source for DE0 Nano SoC . The board name is really DE0-Nano-SoC
> > or Atlas SoC, and it is not to be confused with SoCkit board, which is a
> > different one. Rename the DT source file to match the board name and to
> > avoid this possible mixup with another different board.
> >
> > Upstream commit 202eb5481421040e115526b75317b5ca72584806
> >
> > This commit is needed because it aligns the device tree name of U-Boot
> > and kernel which helps distro boot procedures (fdtfile as set by U-Boot
> > will match the kernel-provided dtb).
> >
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Dinh Nguyen <dinguyen@kernel.org>
> > Cc: Jan Kiszka <jan.kiszka@siemens.com>
> > Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> > ---
> >
> > Changes in v2:
> >  - enhance upstream commit log with reason to adopt the patch
> >
> >  arch/arm/boot/dts/Makefile                                              | 2 +-
> >  ...ocfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts}
> | 0
> >  2 files changed, 1 insertion(+), 1 deletion(-)
> >  rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts =>
> > socfpga_cyclone5_de0_nano_soc.dts} (100%)
> >
> > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> > index e0a0deaacd48..9871a7f0f92a 100644
> > --- a/arch/arm/boot/dts/Makefile
> > +++ b/arch/arm/boot/dts/Makefile
> > @@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
> >  	socfpga_arria5_socdk.dtb \
> >  	socfpga_arria10_socdk_sdmmc.dtb \
> >  	socfpga_cyclone5_socdk.dtb \
> > -	socfpga_cyclone5_de0_sockit.dtb \
> > +	socfpga_cyclone5_de0_nano_soc.dtb \
> >  	socfpga_cyclone5_sockit.dtb \
> >  	socfpga_cyclone5_socrates.dtb \
> >  	socfpga_vt.dtb
> > diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > similarity index 100%
> > rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > --
> > 2.16.4
> > _______________________________________________
> > cip-dev mailing list
> > cip-dev at lists.cip-project.org
> > https://lists.cip-project.org/mailman/listinfo/cip-dev

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

* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
  2018-12-11  0:30 ` Daniel Sangorrin
@ 2018-12-11  6:14   ` 小口琢夫 / KOGUCHI,TAKUO
  2018-12-11  6:29     ` 小口琢夫 / KOGUCHI,TAKUO
  2018-12-11  6:17   ` Jan Kiszka
  1 sibling, 1 reply; 6+ messages in thread
From: 小口琢夫 / KOGUCHI,TAKUO @ 2018-12-11  6:14 UTC (permalink / raw)
  To: cip-dev

Daniel-san,

> * What is the current status of the CIP kernel compared to that separate repository?
The separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip) has socfpga-4.4.154-cip28 tag and up-to-date.
> * Is any of you planning to backport patches to the CIP kernel 4.4?
I just created socfpga-4.4-cip-rebase branch on the separate repository and found there still remain 155 patches on top of linux-4.4.y-cip branch. I suppose most of those patches do not exist in the upstream kernel.

Takuo Koguchi

> -----Original Message-----
> From: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> Sent: Tuesday, December 11, 2018 9:30 AM
> To: 'Jan Kiszka' <jan.kiszka@siemens.com>; ???? / KOGUCHI?TAKUO
> <takuo.koguchi.sw@hitachi.com>
> Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> Subject: [!]RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> socfpga_cyclone5_de0_{sockit, nano_soc}
> 
> Koguchi-san, Jan-san:
> 
> The Deby reference implementation of CIP core contains the meta-cip-cyclonev layer. This layer
> is still using a separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip)
> created by Koguchi-san.
> 
> * What is the current status of the CIP kernel compared to that separate repository?
> * Is any of you planning to backport patches to the CIP kernel 4.4?
> 
> Thanks,
> Daniel
> 
> > -----Original Message-----
> > From: cip-dev-bounces at lists.cip-project.org
> > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > Sent: Monday, December 10, 2018 7:25 PM
> > To: cip-dev <cip-dev@lists.cip-project.org>
> > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > socfpga_cyclone5_de0_{sockit, nano_soc}
> >
> >
> >
> > > -----Original Message-----
> > > From: cip-dev-bounces at lists.cip-project.org
> > > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > > Sent: Monday, December 10, 2018 7:25 PM
> > > To: cip-dev <cip-dev@lists.cip-project.org>
> > > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > >
> > > From: Marek Vasut <marex@denx.de>
> > >
> > > Rename DT source for DE0 Nano SoC . The board name is really DE0-Nano-SoC
> > > or Atlas SoC, and it is not to be confused with SoCkit board, which is a
> > > different one. Rename the DT source file to match the board name and to
> > > avoid this possible mixup with another different board.
> > >
> > > Upstream commit 202eb5481421040e115526b75317b5ca72584806
> > >
> > > This commit is needed because it aligns the device tree name of U-Boot
> > > and kernel which helps distro boot procedures (fdtfile as set by U-Boot
> > > will match the kernel-provided dtb).
> > >
> > > Signed-off-by: Marek Vasut <marex@denx.de>
> > > Cc: Dinh Nguyen <dinguyen@kernel.org>
> > > Cc: Jan Kiszka <jan.kiszka@siemens.com>
> > > Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> > > ---
> > >
> > > Changes in v2:
> > >  - enhance upstream commit log with reason to adopt the patch
> > >
> > >  arch/arm/boot/dts/Makefile                                              | 2 +-
> > >  ...ocfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts}
> > | 0
> > >  2 files changed, 1 insertion(+), 1 deletion(-)
> > >  rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts =>
> > > socfpga_cyclone5_de0_nano_soc.dts} (100%)
> > >
> > > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> > > index e0a0deaacd48..9871a7f0f92a 100644
> > > --- a/arch/arm/boot/dts/Makefile
> > > +++ b/arch/arm/boot/dts/Makefile
> > > @@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
> > >  	socfpga_arria5_socdk.dtb \
> > >  	socfpga_arria10_socdk_sdmmc.dtb \
> > >  	socfpga_cyclone5_socdk.dtb \
> > > -	socfpga_cyclone5_de0_sockit.dtb \
> > > +	socfpga_cyclone5_de0_nano_soc.dtb \
> > >  	socfpga_cyclone5_sockit.dtb \
> > >  	socfpga_cyclone5_socrates.dtb \
> > >  	socfpga_vt.dtb
> > > diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > similarity index 100%
> > > rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > --
> > > 2.16.4
> > > _______________________________________________
> > > cip-dev mailing list
> > > cip-dev at lists.cip-project.org
> > >
> https://clicktime.symantec.com/a/1/T_nCixo-5H94-nBPxFGBiLqEHOCQAjuYJkQU4Z1FrD8=?d=_LC007
> UK9I-qeCSodui8tJhJTjv7ZTqN0HR5J8u86PSov8apwyy5m-7KkRTOc_kBhLxcHoYOPBDvxqlzWbXxmvXOfNBqUL
> Hc8T64OWhm95V8-UhFB0oj9lUHFXXe8b8mzNtUEBh8pJ-EVgiZrWjVphag98Jpfb0XUN09yteaK2ztkIe3CCr7ls
> TeBmYOckLJedJf0K5Ys7kxVPQZZUMv7zogY26pdRv3nCZGj19LVOq3RBZS5SpmrgLyUL-ryJI4TvPwtVgxpjsFI0
> duuJXYmwLB7Wxa3MR0gyQwvjHb3OQjy2GOrvVg7z0TTZEMOpdpgjyzh54EN77GboPMrD7OAzpe2UAlhjqz5FhSm-
> irDks18tCTAE2dnVFpOKBoqBArzFzk2ipLsKzes80cvXuThbYgx8jKvMWtD6Kmj-K_LGPCDb-5a3WkVINt7rUG0N
> tI4hFuwZSdk4r7MWb_xIHg8sCTygSB&u=https%3A%2F%2Flists.cip-project.org%2Fmailman%2Flistinf
> o%2Fcip-dev

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

* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
  2018-12-11  0:30 ` Daniel Sangorrin
  2018-12-11  6:14   ` 小口琢夫 / KOGUCHI,TAKUO
@ 2018-12-11  6:17   ` Jan Kiszka
  1 sibling, 0 replies; 6+ messages in thread
From: Jan Kiszka @ 2018-12-11  6:17 UTC (permalink / raw)
  To: cip-dev

On 11.12.18 01:30, Daniel Sangorrin wrote:
> Koguchi-san, Jan-san:
> 
> The Deby reference implementation of CIP core contains the meta-cip-cyclonev layer. This layer is still using a separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip) created by Koguchi-san.
> 
> * What is the current status of the CIP kernel compared to that separate repository?

Didn't look into all details, we just once examined the NAND flash related 
changes. But then we decided to backport upstream changes instead (to my 
understanding, that tree is only Altera BSP). That happened in a project 
specific way, i.e. ignoring breakages of other drivers. Thus: no CIP material.

> * Is any of you planning to backport patches to the CIP kernel 4.4?

Not from our side any more. We will eventually move to 4.19-cip, specifically to 
overcome the long denali queue. We are lucky to have a window for this major 
update with our current Arria-10 design.

Jan

>> -----Original Message-----
>> From: cip-dev-bounces at lists.cip-project.org
>> <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
>> Sent: Monday, December 10, 2018 7:25 PM
>> To: cip-dev <cip-dev@lists.cip-project.org>
>> Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
>> socfpga_cyclone5_de0_{sockit, nano_soc}
>>
>>
>>
>>> -----Original Message-----
>>> From: cip-dev-bounces at lists.cip-project.org
>>> <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
>>> Sent: Monday, December 10, 2018 7:25 PM
>>> To: cip-dev <cip-dev@lists.cip-project.org>
>>> Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
>>> socfpga_cyclone5_de0_{sockit, nano_soc}
>>>
>>> From: Marek Vasut <marex@denx.de>
>>>
>>> Rename DT source for DE0 Nano SoC . The board name is really DE0-Nano-SoC
>>> or Atlas SoC, and it is not to be confused with SoCkit board, which is a
>>> different one. Rename the DT source file to match the board name and to
>>> avoid this possible mixup with another different board.
>>>
>>> Upstream commit 202eb5481421040e115526b75317b5ca72584806
>>>
>>> This commit is needed because it aligns the device tree name of U-Boot
>>> and kernel which helps distro boot procedures (fdtfile as set by U-Boot
>>> will match the kernel-provided dtb).
>>>
>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>> Cc: Dinh Nguyen <dinguyen@kernel.org>
>>> Cc: Jan Kiszka <jan.kiszka@siemens.com>
>>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>>> ---
>>>
>>> Changes in v2:
>>>   - enhance upstream commit log with reason to adopt the patch
>>>
>>>   arch/arm/boot/dts/Makefile                                              | 2 +-
>>>   ...ocfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts}
>> | 0
>>>   2 files changed, 1 insertion(+), 1 deletion(-)
>>>   rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts =>
>>> socfpga_cyclone5_de0_nano_soc.dts} (100%)
>>>
>>> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
>>> index e0a0deaacd48..9871a7f0f92a 100644
>>> --- a/arch/arm/boot/dts/Makefile
>>> +++ b/arch/arm/boot/dts/Makefile
>>> @@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
>>>   	socfpga_arria5_socdk.dtb \
>>>   	socfpga_arria10_socdk_sdmmc.dtb \
>>>   	socfpga_cyclone5_socdk.dtb \
>>> -	socfpga_cyclone5_de0_sockit.dtb \
>>> +	socfpga_cyclone5_de0_nano_soc.dtb \
>>>   	socfpga_cyclone5_sockit.dtb \
>>>   	socfpga_cyclone5_socrates.dtb \
>>>   	socfpga_vt.dtb
>>> diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
>>> b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
>>> similarity index 100%
>>> rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
>>> rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
>>> --
>>> 2.16.4
>>> _______________________________________________
>>> cip-dev mailing list
>>> cip-dev at lists.cip-project.org
>>> https://lists.cip-project.org/mailman/listinfo/cip-dev
> 

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

* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
  2018-12-11  6:14   ` 小口琢夫 / KOGUCHI,TAKUO
@ 2018-12-11  6:29     ` 小口琢夫 / KOGUCHI,TAKUO
  2018-12-12  2:53       ` Daniel Sangorrin
  0 siblings, 1 reply; 6+ messages in thread
From: 小口琢夫 / KOGUCHI,TAKUO @ 2018-12-11  6:29 UTC (permalink / raw)
  To: cip-dev

Daniel-san,

> I just created socfpga-4.4-cip-rebase branch on the separate repository and found there still
> remain 155 patches on top of linux-4.4.y-cip branch. I suppose most of those patches do not
> exist in the upstream kernel.

I do not mean upstream kernel has all those issues. Some of them have been solved in different ways.

Takuo Koguchi



> -----Original Message-----
> From: ???? / KOGUCHI?TAKUO
> Sent: Tuesday, December 11, 2018 3:14 PM
> To: 'Daniel Sangorrin' <daniel.sangorrin@toshiba.co.jp>; 'Jan Kiszka'
> <jan.kiszka@siemens.com>
> Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> Subject: RE: [!]RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> socfpga_cyclone5_de0_{sockit, nano_soc}
> 
> Daniel-san,
> 
> > * What is the current status of the CIP kernel compared to that separate repository?
> The separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip) has
> socfpga-4.4.154-cip28 tag and up-to-date.
> > * Is any of you planning to backport patches to the CIP kernel 4.4?
> I just created socfpga-4.4-cip-rebase branch on the separate repository and found there still
> remain 155 patches on top of linux-4.4.y-cip branch. I suppose most of those patches do not
> exist in the upstream kernel.
> 
> Takuo Koguchi
> 
> > -----Original Message-----
> > From: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> > Sent: Tuesday, December 11, 2018 9:30 AM
> > To: 'Jan Kiszka' <jan.kiszka@siemens.com>; ???? / KOGUCHI?TAKUO
> > <takuo.koguchi.sw@hitachi.com>
> > Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> > Subject: [!]RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > socfpga_cyclone5_de0_{sockit, nano_soc}
> >
> > Koguchi-san, Jan-san:
> >
> > The Deby reference implementation of CIP core contains the meta-cip-cyclonev layer. This
> layer
> > is still using a separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip)
> > created by Koguchi-san.
> >
> > * What is the current status of the CIP kernel compared to that separate repository?
> > * Is any of you planning to backport patches to the CIP kernel 4.4?
> >
> > Thanks,
> > Daniel
> >
> > > -----Original Message-----
> > > From: cip-dev-bounces at lists.cip-project.org
> > > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > > Sent: Monday, December 10, 2018 7:25 PM
> > > To: cip-dev <cip-dev@lists.cip-project.org>
> > > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > >
> > >
> > >
> > > > -----Original Message-----
> > > > From: cip-dev-bounces at lists.cip-project.org
> > > > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > > > Sent: Monday, December 10, 2018 7:25 PM
> > > > To: cip-dev <cip-dev@lists.cip-project.org>
> > > > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > > >
> > > > From: Marek Vasut <marex@denx.de>
> > > >
> > > > Rename DT source for DE0 Nano SoC . The board name is really DE0-Nano-SoC
> > > > or Atlas SoC, and it is not to be confused with SoCkit board, which is a
> > > > different one. Rename the DT source file to match the board name and to
> > > > avoid this possible mixup with another different board.
> > > >
> > > > Upstream commit 202eb5481421040e115526b75317b5ca72584806
> > > >
> > > > This commit is needed because it aligns the device tree name of U-Boot
> > > > and kernel which helps distro boot procedures (fdtfile as set by U-Boot
> > > > will match the kernel-provided dtb).
> > > >
> > > > Signed-off-by: Marek Vasut <marex@denx.de>
> > > > Cc: Dinh Nguyen <dinguyen@kernel.org>
> > > > Cc: Jan Kiszka <jan.kiszka@siemens.com>
> > > > Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> > > > ---
> > > >
> > > > Changes in v2:
> > > >  - enhance upstream commit log with reason to adopt the patch
> > > >
> > > >  arch/arm/boot/dts/Makefile                                              | 2 +-
> > > >  ...ocfpga_cyclone5_de0_sockit.dts => socfpga_cyclone5_de0_nano_soc.dts}
> > > | 0
> > > >  2 files changed, 1 insertion(+), 1 deletion(-)
> > > >  rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts =>
> > > > socfpga_cyclone5_de0_nano_soc.dts} (100%)
> > > >
> > > > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> > > > index e0a0deaacd48..9871a7f0f92a 100644
> > > > --- a/arch/arm/boot/dts/Makefile
> > > > +++ b/arch/arm/boot/dts/Makefile
> > > > @@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
> > > >  	socfpga_arria5_socdk.dtb \
> > > >  	socfpga_arria10_socdk_sdmmc.dtb \
> > > >  	socfpga_cyclone5_socdk.dtb \
> > > > -	socfpga_cyclone5_de0_sockit.dtb \
> > > > +	socfpga_cyclone5_de0_nano_soc.dtb \
> > > >  	socfpga_cyclone5_sockit.dtb \
> > > >  	socfpga_cyclone5_socrates.dtb \
> > > >  	socfpga_vt.dtb
> > > > diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > > b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > > similarity index 100%
> > > > rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > > rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > > --
> > > > 2.16.4
> > > > _______________________________________________
> > > > cip-dev mailing list
> > > > cip-dev at lists.cip-project.org
> > > >
> >
> https://clicktime.symantec.com/a/1/T_nCixo-5H94-nBPxFGBiLqEHOCQAjuYJkQU4Z1FrD8=?d=_LC007
> >
> UK9I-qeCSodui8tJhJTjv7ZTqN0HR5J8u86PSov8apwyy5m-7KkRTOc_kBhLxcHoYOPBDvxqlzWbXxmvXOfNBqUL
> >
> Hc8T64OWhm95V8-UhFB0oj9lUHFXXe8b8mzNtUEBh8pJ-EVgiZrWjVphag98Jpfb0XUN09yteaK2ztkIe3CCr7ls
> >
> TeBmYOckLJedJf0K5Ys7kxVPQZZUMv7zogY26pdRv3nCZGj19LVOq3RBZS5SpmrgLyUL-ryJI4TvPwtVgxpjsFI0
> >
> duuJXYmwLB7Wxa3MR0gyQwvjHb3OQjy2GOrvVg7z0TTZEMOpdpgjyzh54EN77GboPMrD7OAzpe2UAlhjqz5FhSm-
> >
> irDks18tCTAE2dnVFpOKBoqBArzFzk2ipLsKzes80cvXuThbYgx8jKvMWtD6Kmj-K_LGPCDb-5a3WkVINt7rUG0N
> >
> tI4hFuwZSdk4r7MWb_xIHg8sCTygSB&u=https%3A%2F%2Flists.cip-project.org%2Fmailman%2Flistinf
> > o%2Fcip-dev

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

* [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc}
  2018-12-11  6:29     ` 小口琢夫 / KOGUCHI,TAKUO
@ 2018-12-12  2:53       ` Daniel Sangorrin
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Sangorrin @ 2018-12-12  2:53 UTC (permalink / raw)
  To: cip-dev

Koguchi-san, Jan-san:

Thank you for the clarification.
I think I will leave CIP core v1 as it is, pointing to Koguchi-san's repository.
For CIP core v2 (meta-debian v2) I will use CIP kernel v2 (4.19) once it is released.

Thanks,
Daniel

> -----Original Message-----
> From: ???? / KOGUCHI?TAKUO <takuo.koguchi.sw@hitachi.com>
> Sent: Tuesday, December 11, 2018 3:29 PM
> To: 'Daniel Sangorrin' <daniel.sangorrin@toshiba.co.jp>; 'Jan Kiszka'
> <jan.kiszka@siemens.com>
> Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> Subject: RE: RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> socfpga_cyclone5_de0_{sockit, nano_soc}
> 
> Daniel-san,
> 
> > I just created socfpga-4.4-cip-rebase branch on the separate repository and
> found there still
> > remain 155 patches on top of linux-4.4.y-cip branch. I suppose most of those
> patches do not
> > exist in the upstream kernel.
> 
> I do not mean upstream kernel has all those issues. Some of them have been solved
> in different ways.
> 
> Takuo Koguchi
> 
> 
> 
> > -----Original Message-----
> > From: ???? / KOGUCHI?TAKUO
> > Sent: Tuesday, December 11, 2018 3:14 PM
> > To: 'Daniel Sangorrin' <daniel.sangorrin@toshiba.co.jp>; 'Jan Kiszka'
> > <jan.kiszka@siemens.com>
> > Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> > Subject: RE: [!]RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > socfpga_cyclone5_de0_{sockit, nano_soc}
> >
> > Daniel-san,
> >
> > > * What is the current status of the CIP kernel compared to that separate
> repository?
> > The separate repository (linux-cip-cyclonev.git, branch: socfpga-4.4-cip) has
> > socfpga-4.4.154-cip28 tag and up-to-date.
> > > * Is any of you planning to backport patches to the CIP kernel 4.4?
> > I just created socfpga-4.4-cip-rebase branch on the separate repository and
> found there still
> > remain 155 patches on top of linux-4.4.y-cip branch. I suppose most of those
> patches do not
> > exist in the upstream kernel.
> >
> > Takuo Koguchi
> >
> > > -----Original Message-----
> > > From: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> > > Sent: Tuesday, December 11, 2018 9:30 AM
> > > To: 'Jan Kiszka' <jan.kiszka@siemens.com>; ???? / KOGUCHI?TAKUO
> > > <takuo.koguchi.sw@hitachi.com>
> > > Cc: 'cip-dev' <cip-dev@lists.cip-project.org>
> > > Subject: [!]RE: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > >
> > > Koguchi-san, Jan-san:
> > >
> > > The Deby reference implementation of CIP core contains the
> meta-cip-cyclonev layer. This
> > layer
> > > is still using a separate repository (linux-cip-cyclonev.git, branch:
> socfpga-4.4-cip)
> > > created by Koguchi-san.
> > >
> > > * What is the current status of the CIP kernel compared to that separate
> repository?
> > > * Is any of you planning to backport patches to the CIP kernel 4.4?
> > >
> > > Thanks,
> > > Daniel
> > >
> > > > -----Original Message-----
> > > > From: cip-dev-bounces at lists.cip-project.org
> > > > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > > > Sent: Monday, December 10, 2018 7:25 PM
> > > > To: cip-dev <cip-dev@lists.cip-project.org>
> > > > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > > >
> > > >
> > > >
> > > > > -----Original Message-----
> > > > > From: cip-dev-bounces at lists.cip-project.org
> > > > > <cip-dev-bounces@lists.cip-project.org> On Behalf Of Jan Kiszka
> > > > > Sent: Monday, December 10, 2018 7:25 PM
> > > > > To: cip-dev <cip-dev@lists.cip-project.org>
> > > > > Subject: [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename
> > > > > socfpga_cyclone5_de0_{sockit, nano_soc}
> > > > >
> > > > > From: Marek Vasut <marex@denx.de>
> > > > >
> > > > > Rename DT source for DE0 Nano SoC . The board name is really
> DE0-Nano-SoC
> > > > > or Atlas SoC, and it is not to be confused with SoCkit board, which is a
> > > > > different one. Rename the DT source file to match the board name and to
> > > > > avoid this possible mixup with another different board.
> > > > >
> > > > > Upstream commit 202eb5481421040e115526b75317b5ca72584806
> > > > >
> > > > > This commit is needed because it aligns the device tree name of U-Boot
> > > > > and kernel which helps distro boot procedures (fdtfile as set by U-Boot
> > > > > will match the kernel-provided dtb).
> > > > >
> > > > > Signed-off-by: Marek Vasut <marex@denx.de>
> > > > > Cc: Dinh Nguyen <dinguyen@kernel.org>
> > > > > Cc: Jan Kiszka <jan.kiszka@siemens.com>
> > > > > Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> > > > > ---
> > > > >
> > > > > Changes in v2:
> > > > >  - enhance upstream commit log with reason to adopt the patch
> > > > >
> > > > >  arch/arm/boot/dts/Makefile
> | 2 +-
> > > > >  ...ocfpga_cyclone5_de0_sockit.dts =>
> socfpga_cyclone5_de0_nano_soc.dts}
> > > > | 0
> > > > >  2 files changed, 1 insertion(+), 1 deletion(-)
> > > > >  rename arch/arm/boot/dts/{socfpga_cyclone5_de0_sockit.dts =>
> > > > > socfpga_cyclone5_de0_nano_soc.dts} (100%)
> > > > >
> > > > > diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> > > > > index e0a0deaacd48..9871a7f0f92a 100644
> > > > > --- a/arch/arm/boot/dts/Makefile
> > > > > +++ b/arch/arm/boot/dts/Makefile
> > > > > @@ -562,7 +562,7 @@ dtb-$(CONFIG_ARCH_SOCFPGA) += \
> > > > >  	socfpga_arria5_socdk.dtb \
> > > > >  	socfpga_arria10_socdk_sdmmc.dtb \
> > > > >  	socfpga_cyclone5_socdk.dtb \
> > > > > -	socfpga_cyclone5_de0_sockit.dtb \
> > > > > +	socfpga_cyclone5_de0_nano_soc.dtb \
> > > > >  	socfpga_cyclone5_sockit.dtb \
> > > > >  	socfpga_cyclone5_socrates.dtb \
> > > > >  	socfpga_vt.dtb
> > > > > diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > > > b/arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > > > similarity index 100%
> > > > > rename from arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > > > > rename to arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dts
> > > > > --
> > > > > 2.16.4
> > > > > _______________________________________________
> > > > > cip-dev mailing list
> > > > > cip-dev at lists.cip-project.org
> > > > >
> > >
> >
> https://clicktime.symantec.com/a/1/T_nCixo-5H94-nBPxFGBiLqEHOCQAjuYJkQU
> 4Z1FrD8=?d=_LC007
> > >
> >
> UK9I-qeCSodui8tJhJTjv7ZTqN0HR5J8u86PSov8apwyy5m-7KkRTOc_kBhLxcHoY
> OPBDvxqlzWbXxmvXOfNBqUL
> > >
> >
> Hc8T64OWhm95V8-UhFB0oj9lUHFXXe8b8mzNtUEBh8pJ-EVgiZrWjVphag98Jpfb
> 0XUN09yteaK2ztkIe3CCr7ls
> > >
> >
> TeBmYOckLJedJf0K5Ys7kxVPQZZUMv7zogY26pdRv3nCZGj19LVOq3RBZS5Spmrg
> LyUL-ryJI4TvPwtVgxpjsFI0
> > >
> >
> duuJXYmwLB7Wxa3MR0gyQwvjHb3OQjy2GOrvVg7z0TTZEMOpdpgjyzh54EN77G
> boPMrD7OAzpe2UAlhjqz5FhSm-
> > >
> >
> irDks18tCTAE2dnVFpOKBoqBArzFzk2ipLsKzes80cvXuThbYgx8jKvMWtD6Kmj-K_L
> GPCDb-5a3WkVINt7rUG0N
> > >
> >
> tI4hFuwZSdk4r7MWb_xIHg8sCTygSB&u=https%3A%2F%2Flists.cip-project.org
> %2Fmailman%2Flistinf
> > > o%2Fcip-dev

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

end of thread, other threads:[~2018-12-12  2:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-10 10:25 [cip-dev] [PATCH 4.4-cip v2] ARM: dts: socfpga: Rename socfpga_cyclone5_de0_{sockit, nano_soc} Jan Kiszka
2018-12-11  0:30 ` Daniel Sangorrin
2018-12-11  6:14   ` 小口琢夫 / KOGUCHI,TAKUO
2018-12-11  6:29     ` 小口琢夫 / KOGUCHI,TAKUO
2018-12-12  2:53       ` Daniel Sangorrin
2018-12-11  6:17   ` Jan Kiszka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.