linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
@ 2014-07-29  7:44 xuwei
  2014-07-29 10:56 ` Arnd Bergmann
  2014-07-31  5:32 ` Olof Johansson
  0 siblings, 2 replies; 8+ messages in thread
From: xuwei @ 2014-07-29  7:44 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please help to merge pull request for hisilicon terminal soc. 

Best Regards,
Wei


The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:

  Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)

are available in the git repository at:

  git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2

for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:

  ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)

----------------------------------------------------------------
ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17

- Rename Hi3716 to HiX5HD2
HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
And original Hi3xxx SoC is for mobile market.
To avoid confusing the two types of SoCs and also because of
different implementation(SMP, IPs integarted and earlycon configure),
rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.

- Add HiX5HD2 STB SoC and development kit board support
- Change to use power reset driver to reboot for HiX5HD2
- Add ARCH_HISI for the common configure of hisilicon SoCs
- Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
- Enable L2 aux value for Hi3620

----------------------------------------------------------------
Haifeng Yan (3):
      ARM: debug: Rename Hi3716 to HIX5HD2
      ARM: hisi: enable hix5hd2 SoC
      ARM: dts: Add hix5hd2-dkb dts file.

Haojian Zhuang (5):
      ARM: hisi: add ARCH_HISI
      power: reset: move hisilicon reboot code
      ARM: config: enable ARCH_HIX5HD2
      ARM: hisi: set l2 aux for pl310
      ARM: hisi: remove smp from machine descriptor

 Documentation/devicetree/bindings/arm/hisilicon/hisilicon.txt |  11 +++++++
 arch/arm/Kconfig.debug                                        |  12 ++++++--
 arch/arm/Makefile                                             |   2 +-
 arch/arm/boot/dts/Makefile                                    |   1 +
 arch/arm/boot/dts/hi3620.dtsi                                 |   1 +
 arch/arm/boot/dts/hix5hd2-dkb.dts                             |  53 ++++++++++++++++++++++++++++++++++
 arch/arm/boot/dts/hix5hd2.dtsi                                | 170 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/configs/hi3xxx_defconfig                             |   2 ++
 arch/arm/configs/multi_v7_defconfig                           |   1 +
 arch/arm/mach-hisi/Kconfig                                    |  30 +++++++++++++++++--
 arch/arm/mach-hisi/Makefile                                   |   2 +-
 arch/arm/mach-hisi/core.h                                     |   5 ++++
 arch/arm/mach-hisi/headsmp.S                                  |  16 +++++++++++
 arch/arm/mach-hisi/hisilicon.c                                |  45 +++++++----------------------
 arch/arm/mach-hisi/hotplug.c                                  |  58 +++++++++++++++++++++++++++++++++++++
 arch/arm/mach-hisi/platsmp.c                                  |  53 ++++++++++++++++++++++++++++++++--
 drivers/power/reset/Kconfig                                   |   6 ++++
 drivers/power/reset/Makefile                                  |   1 +
 drivers/power/reset/hisi-reboot.c                             |  67 +++++++++++++++++++++++++++++++++++++++++++
 19 files changed, 492 insertions(+), 44 deletions(-)
 create mode 100644 arch/arm/boot/dts/hix5hd2-dkb.dts
 create mode 100644 arch/arm/boot/dts/hix5hd2.dtsi
 create mode 100644 arch/arm/mach-hisi/headsmp.S
 create mode 100644 drivers/power/reset/hisi-reboot.c

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-29  7:44 [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc xuwei
@ 2014-07-29 10:56 ` Arnd Bergmann
  2014-07-31  5:32 ` Olof Johansson
  1 sibling, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2014-07-29 10:56 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 29 July 2014 15:44:10 xuwei wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please help to merge pull request for hisilicon terminal soc. 
> 
> Best Regards,
> Wei
> 
> 
> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
> 
>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
> 
> are available in the git repository at:
> 
>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
> 
> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
> 
>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
> 
> ----------------------------------------------------------------
> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
> 
> - Rename Hi3716 to HiX5HD2
> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
> And original Hi3xxx SoC is for mobile market.
> To avoid confusing the two types of SoCs and also because of
> different implementation(SMP, IPs integarted and earlycon configure),
> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
> 
> - Add HiX5HD2 STB SoC and development kit board support
> - Change to use power reset driver to reboot for HiX5HD2
> - Add ARCH_HISI for the common configure of hisilicon SoCs
> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
> - Enable L2 aux value for Hi3620
> 

Looks all good to me now. I'll wait for Olof to take a second look,
since he had comments as well, and will let him pull it.

Thanks for updating it this quickly to address all my comments!

	Arnd

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-29  7:44 [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc xuwei
  2014-07-29 10:56 ` Arnd Bergmann
@ 2014-07-31  5:32 ` Olof Johansson
  2014-07-31  6:08   ` xuwei
  1 sibling, 1 reply; 8+ messages in thread
From: Olof Johansson @ 2014-07-31  5:32 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

There were a few things that still needed fixing here -- I took care
of most of them. See below.


On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
>
> Please help to merge pull request for hisilicon terminal soc.
>
> Best Regards,
> Wei
>
>
> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>
>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>
> are available in the git repository at:
>
>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>
> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>
>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>
> ----------------------------------------------------------------
> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>
> - Rename Hi3716 to HiX5HD2
> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
> And original Hi3xxx SoC is for mobile market.
> To avoid confusing the two types of SoCs and also because of
> different implementation(SMP, IPs integarted and earlycon configure),
> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>
> - Add HiX5HD2 STB SoC and development kit board support
> - Change to use power reset driver to reboot for HiX5HD2
> - Add ARCH_HISI for the common configure of hisilicon SoCs
> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
> - Enable L2 aux value for Hi3620
>
> ----------------------------------------------------------------
> Haifeng Yan (3):
>       ARM: debug: Rename Hi3716 to HIX5HD2
>       ARM: hisi: enable hix5hd2 SoC
>       ARM: dts: Add hix5hd2-dkb dts file.

It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
like there are references to both.

What I did was that I renamed the dts and dtsi to hisi-x5hd2  to have
the vendor/family as prefix. Given the few boards per SoC family you
have had so far, it makes more sense to prefix it with hisi.

> Haojian Zhuang (5):
>       ARM: hisi: add ARCH_HISI
>       power: reset: move hisilicon reboot code
>       ARM: config: enable ARCH_HIX5HD2
>       ARM: hisi: set l2 aux for pl310

This patch makes no sense to still carry. If things still need to be
resolved, then it should just be dropped.

>       ARM: hisi: remove smp from machine descriptor


Also, in general: Wei, you seem to have added your Acked-by instead of
Signed-off-by on the commits. When you apply them, you need to do so
with your sign off.

What I have done is that I have applied most of the above patches
directly instead of merging the branch, and I have done the touchups
described above (dropped the L2 patch and renamed the dts/dtsi).

If for some reason, the name really should be hisi-hix5hd2, then let
me know quickly so I can revisit before it goes in. But I don't thik
so -- I find more hits with "x5hd2" out there than with "hix5hd2". If
anything, the remaining traces of hix5hd2 should probably be renamed
too (machine descriptor, etc).

(I also fixed a few spelling errors in the patch descriptions here and
there, etc).


-Olof

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-31  5:32 ` Olof Johansson
@ 2014-07-31  6:08   ` xuwei
  2014-07-31  6:14     ` Olof Johansson
  0 siblings, 1 reply; 8+ messages in thread
From: xuwei @ 2014-07-31  6:08 UTC (permalink / raw)
  To: linux-arm-kernel



On 2014/7/31 13:32, Olof Johansson wrote:
> Hi,
> 
> There were a few things that still needed fixing here -- I took care
> of most of them. See below.
> 
> 
> On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
>> Hi Olof, Hi Kevin, Hi Arnd,
>>
>> Please help to merge pull request for hisilicon terminal soc.
>>
>> Best Regards,
>> Wei
>>
>>
>> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>>
>>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>>
>> are available in the git repository at:
>>
>>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>>
>> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>>
>>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>>
>> ----------------------------------------------------------------
>> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>>
>> - Rename Hi3716 to HiX5HD2
>> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
>> And original Hi3xxx SoC is for mobile market.
>> To avoid confusing the two types of SoCs and also because of
>> different implementation(SMP, IPs integarted and earlycon configure),
>> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>>
>> - Add HiX5HD2 STB SoC and development kit board support
>> - Change to use power reset driver to reboot for HiX5HD2
>> - Add ARCH_HISI for the common configure of hisilicon SoCs
>> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
>> - Enable L2 aux value for Hi3620
>>
>> ----------------------------------------------------------------
>> Haifeng Yan (3):
>>       ARM: debug: Rename Hi3716 to HIX5HD2
>>       ARM: hisi: enable hix5hd2 SoC
>>       ARM: dts: Add hix5hd2-dkb dts file.

Hi Olof,

> It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
> like there are references to both.

The full name is Hisilicon X5HD2.
But we also call it HIX5HD2.

> What I did was that I renamed the dts and dtsi to hisi-x5hd2  to have
> the vendor/family as prefix. Given the few boards per SoC family you
> have had so far, it makes more sense to prefix it with hisi.
> 

It is OK for us.
And we will follow the rule in the future.

>> Haojian Zhuang (5):
>>       ARM: hisi: add ARCH_HISI
>>       power: reset: move hisilicon reboot code
>>       ARM: config: enable ARCH_HIX5HD2
>>       ARM: hisi: set l2 aux for pl310
> 
> This patch makes no sense to still carry. If things still need to be
> resolved, then it should just be dropped.
> 
>>       ARM: hisi: remove smp from machine descriptor
> 
> 
> Also, in general: Wei, you seem to have added your Acked-by instead of
> Signed-off-by on the commits. When you apply them, you need to do so
> with your sign off.

Do you mean I need add both "Acked-by" and "Signed-off-by"?or just add "Signed-off-by"?

 
> What I have done is that I have applied most of the above patches
> directly instead of merging the branch, and I have done the touchups
> described above (dropped the L2 patch and renamed the dts/dtsi).
> 
> If for some reason, the name really should be hisi-hix5hd2, then let
> me know quickly so I can revisit before it goes in. But I don't thik
> so -- I find more hits with "x5hd2" out there than with "hix5hd2". If
> anything, the remaining traces of hix5hd2 should probably be renamed
> too (machine descriptor, etc).

It is OK with "x5hd2".

> (I also fixed a few spelling errors in the patch descriptions here and
> there, etc).

Thanks!

Best Regards,
Wei
 
> 
> -Olof
> 
> .
> 

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-31  6:08   ` xuwei
@ 2014-07-31  6:14     ` Olof Johansson
  2014-07-31  6:16       ` Olof Johansson
  2014-07-31  6:19       ` xuwei
  0 siblings, 2 replies; 8+ messages in thread
From: Olof Johansson @ 2014-07-31  6:14 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jul 30, 2014 at 11:08 PM, xuwei <xuwei5@hisilicon.com> wrote:
>
>
> On 2014/7/31 13:32, Olof Johansson wrote:
>> Hi,
>>
>> There were a few things that still needed fixing here -- I took care
>> of most of them. See below.
>>
>>
>> On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
>>> Hi Olof, Hi Kevin, Hi Arnd,
>>>
>>> Please help to merge pull request for hisilicon terminal soc.
>>>
>>> Best Regards,
>>> Wei
>>>
>>>
>>> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>>>
>>>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>>>
>>> are available in the git repository at:
>>>
>>>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>>>
>>> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>>>
>>>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>>>
>>> ----------------------------------------------------------------
>>> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>>>
>>> - Rename Hi3716 to HiX5HD2
>>> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
>>> And original Hi3xxx SoC is for mobile market.
>>> To avoid confusing the two types of SoCs and also because of
>>> different implementation(SMP, IPs integarted and earlycon configure),
>>> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>>>
>>> - Add HiX5HD2 STB SoC and development kit board support
>>> - Change to use power reset driver to reboot for HiX5HD2
>>> - Add ARCH_HISI for the common configure of hisilicon SoCs
>>> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
>>> - Enable L2 aux value for Hi3620
>>>
>>> ----------------------------------------------------------------
>>> Haifeng Yan (3):
>>>       ARM: debug: Rename Hi3716 to HIX5HD2
>>>       ARM: hisi: enable hix5hd2 SoC
>>>       ARM: dts: Add hix5hd2-dkb dts file.
>
> Hi Olof,
>
>> It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
>> like there are references to both.
>
> The full name is Hisilicon X5HD2.
> But we also call it HIX5HD2.

Ok. I think for consistency, it's better to call it X5HD2 everywhere
in the kernel where it's already prefixed by Hisilicon, such as
compatible strings and help texts on config options.

>> What I did was that I renamed the dts and dtsi to hisi-x5hd2  to have
>> the vendor/family as prefix. Given the few boards per SoC family you
>> have had so far, it makes more sense to prefix it with hisi.
>>
>
> It is OK for us.
> And we will follow the rule in the future.
>
>>> Haojian Zhuang (5):
>>>       ARM: hisi: add ARCH_HISI
>>>       power: reset: move hisilicon reboot code
>>>       ARM: config: enable ARCH_HIX5HD2
>>>       ARM: hisi: set l2 aux for pl310
>>
>> This patch makes no sense to still carry. If things still need to be
>> resolved, then it should just be dropped.
>>
>>>       ARM: hisi: remove smp from machine descriptor
>>
>>
>> Also, in general: Wei, you seem to have added your Acked-by instead of
>> Signed-off-by on the commits. When you apply them, you need to do so
>> with your sign off.
>
> Do you mean I need add both "Acked-by" and "Signed-off-by"?or just add "Signed-off-by"?

Just S-o-b. See Documentation/SubmittingPatches.txt for more
explanation on what the different tags mean.

>> What I have done is that I have applied most of the above patches
>> directly instead of merging the branch, and I have done the touchups
>> described above (dropped the L2 patch and renamed the dts/dtsi).
>>
>> If for some reason, the name really should be hisi-hix5hd2, then let
>> me know quickly so I can revisit before it goes in. But I don't thik
>> so -- I find more hits with "x5hd2" out there than with "hix5hd2". If
>> anything, the remaining traces of hix5hd2 should probably be renamed
>> too (machine descriptor, etc).
>
> It is OK with "x5hd2".
>
>> (I also fixed a few spelling errors in the patch descriptions here and
>> there, etc).
>
> Thanks!
>
> Best Regards,
> Wei


-Olof

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-31  6:14     ` Olof Johansson
@ 2014-07-31  6:16       ` Olof Johansson
  2014-07-31  6:22         ` xuwei
  2014-07-31  6:19       ` xuwei
  1 sibling, 1 reply; 8+ messages in thread
From: Olof Johansson @ 2014-07-31  6:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jul 30, 2014 at 11:14 PM, Olof Johansson <olof@lixom.net> wrote:
> On Wed, Jul 30, 2014 at 11:08 PM, xuwei <xuwei5@hisilicon.com> wrote:
>>
>>
>> On 2014/7/31 13:32, Olof Johansson wrote:
>>> Hi,
>>>
>>> There were a few things that still needed fixing here -- I took care
>>> of most of them. See below.
>>>
>>>
>>> On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
>>>> Hi Olof, Hi Kevin, Hi Arnd,
>>>>
>>>> Please help to merge pull request for hisilicon terminal soc.
>>>>
>>>> Best Regards,
>>>> Wei
>>>>
>>>>
>>>> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>>>>
>>>>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>>>>
>>>> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>>>>
>>>>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>>>>
>>>> ----------------------------------------------------------------
>>>> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>>>>
>>>> - Rename Hi3716 to HiX5HD2
>>>> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
>>>> And original Hi3xxx SoC is for mobile market.
>>>> To avoid confusing the two types of SoCs and also because of
>>>> different implementation(SMP, IPs integarted and earlycon configure),
>>>> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>>>>
>>>> - Add HiX5HD2 STB SoC and development kit board support
>>>> - Change to use power reset driver to reboot for HiX5HD2
>>>> - Add ARCH_HISI for the common configure of hisilicon SoCs
>>>> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
>>>> - Enable L2 aux value for Hi3620
>>>>
>>>> ----------------------------------------------------------------
>>>> Haifeng Yan (3):
>>>>       ARM: debug: Rename Hi3716 to HIX5HD2
>>>>       ARM: hisi: enable hix5hd2 SoC
>>>>       ARM: dts: Add hix5hd2-dkb dts file.
>>
>> Hi Olof,
>>
>>> It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
>>> like there are references to both.
>>
>> The full name is Hisilicon X5HD2.
>> But we also call it HIX5HD2.
>
> Ok. I think for consistency, it's better to call it X5HD2 everywhere
> in the kernel where it's already prefixed by Hisilicon, such as
> compatible strings and help texts on config options.

Hrm, I just noticed that the ethernet driver also uses
hisilicon,hix5hd2. Based on that, it's probably easier to go back to
hisi-hix5hd2 everywhere again. I'll rename the dts/dtsi to hisi-hi*
again. Oh well.


-Olof

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-31  6:14     ` Olof Johansson
  2014-07-31  6:16       ` Olof Johansson
@ 2014-07-31  6:19       ` xuwei
  1 sibling, 0 replies; 8+ messages in thread
From: xuwei @ 2014-07-31  6:19 UTC (permalink / raw)
  To: linux-arm-kernel



On 2014/7/31 14:14, Olof Johansson wrote:
> On Wed, Jul 30, 2014 at 11:08 PM, xuwei <xuwei5@hisilicon.com> wrote:
>>
>>
>> On 2014/7/31 13:32, Olof Johansson wrote:
>>> Hi,
>>>
>>> There were a few things that still needed fixing here -- I took care
>>> of most of them. See below.
>>>
>>>
>>> On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
>>>> Hi Olof, Hi Kevin, Hi Arnd,
>>>>
>>>> Please help to merge pull request for hisilicon terminal soc.
>>>>
>>>> Best Regards,
>>>> Wei
>>>>
>>>>
>>>> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>>>>
>>>>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>>>>
>>>> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>>>>
>>>>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>>>>
>>>> ----------------------------------------------------------------
>>>> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>>>>
>>>> - Rename Hi3716 to HiX5HD2
>>>> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
>>>> And original Hi3xxx SoC is for mobile market.
>>>> To avoid confusing the two types of SoCs and also because of
>>>> different implementation(SMP, IPs integarted and earlycon configure),
>>>> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>>>>
>>>> - Add HiX5HD2 STB SoC and development kit board support
>>>> - Change to use power reset driver to reboot for HiX5HD2
>>>> - Add ARCH_HISI for the common configure of hisilicon SoCs
>>>> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
>>>> - Enable L2 aux value for Hi3620
>>>>
>>>> ----------------------------------------------------------------
>>>> Haifeng Yan (3):
>>>>       ARM: debug: Rename Hi3716 to HIX5HD2
>>>>       ARM: hisi: enable hix5hd2 SoC
>>>>       ARM: dts: Add hix5hd2-dkb dts file.
>>
>> Hi Olof,
>>
>>> It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
>>> like there are references to both.
>>
>> The full name is Hisilicon X5HD2.
>> But we also call it HIX5HD2.
> 
> Ok. I think for consistency, it's better to call it X5HD2 everywhere
> in the kernel where it's already prefixed by Hisilicon, such as
> compatible strings and help texts on config options.
> 
>>> What I did was that I renamed the dts and dtsi to hisi-x5hd2  to have
>>> the vendor/family as prefix. Given the few boards per SoC family you
>>> have had so far, it makes more sense to prefix it with hisi.
>>>
>>
>> It is OK for us.
>> And we will follow the rule in the future.
>>
>>>> Haojian Zhuang (5):
>>>>       ARM: hisi: add ARCH_HISI
>>>>       power: reset: move hisilicon reboot code
>>>>       ARM: config: enable ARCH_HIX5HD2
>>>>       ARM: hisi: set l2 aux for pl310
>>>
>>> This patch makes no sense to still carry. If things still need to be
>>> resolved, then it should just be dropped.
>>>
>>>>       ARM: hisi: remove smp from machine descriptor
>>>
>>>
>>> Also, in general: Wei, you seem to have added your Acked-by instead of
>>> Signed-off-by on the commits. When you apply them, you need to do so
>>> with your sign off.
>>
>> Do you mean I need add both "Acked-by" and "Signed-off-by"?or just add "Signed-off-by"?

Hi Olof,

> Just S-o-b. See Documentation/SubmittingPatches.txt for more
> explanation on what the different tags mean.
>

OK.
Thanks!

Best Regards,
Wei


>>> What I have done is that I have applied most of the above patches
>>> directly instead of merging the branch, and I have done the touchups
>>> described above (dropped the L2 patch and renamed the dts/dtsi).
>>>
>>> If for some reason, the name really should be hisi-hix5hd2, then let
>>> me know quickly so I can revisit before it goes in. But I don't thik
>>> so -- I find more hits with "x5hd2" out there than with "hix5hd2". If
>>> anything, the remaining traces of hix5hd2 should probably be renamed
>>> too (machine descriptor, etc).
>>
>> It is OK with "x5hd2".
>>
>>> (I also fixed a few spelling errors in the patch descriptions here and
>>> there, etc).
>>
>> Thanks!
>>
>> Best Regards,
>> Wei
> 
> 
> -Olof
> 
> .
> 

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

* [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc
  2014-07-31  6:16       ` Olof Johansson
@ 2014-07-31  6:22         ` xuwei
  0 siblings, 0 replies; 8+ messages in thread
From: xuwei @ 2014-07-31  6:22 UTC (permalink / raw)
  To: linux-arm-kernel



On 2014/7/31 14:16, Olof Johansson wrote:
> On Wed, Jul 30, 2014 at 11:14 PM, Olof Johansson <olof@lixom.net> wrote:
>> On Wed, Jul 30, 2014 at 11:08 PM, xuwei <xuwei5@hisilicon.com> wrote:
>>>
>>>
>>> On 2014/7/31 13:32, Olof Johansson wrote:
>>>> Hi,
>>>>
>>>> There were a few things that still needed fixing here -- I took care
>>>> of most of them. See below.
>>>>
>>>>
>>>> On Tue, Jul 29, 2014 at 12:44 AM, xuwei <xuwei5@hisilicon.com> wrote:
>>>>> Hi Olof, Hi Kevin, Hi Arnd,
>>>>>
>>>>> Please help to merge pull request for hisilicon terminal soc.
>>>>>
>>>>> Best Regards,
>>>>> Wei
>>>>>
>>>>>
>>>>> The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f:
>>>>>
>>>>>   Linux 3.16-rc1 (2014-06-15 17:45:28 -1000)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>>   git://github.com/hisilicon/linux-hisi.git tags/hix5hd2-for-3.17-v2
>>>>>
>>>>> for you to fetch changes up to eeea1ab9b53f311f634e87d9208daa564a97dbba:
>>>>>
>>>>>   ARM: hisi: remove smp from machine descriptor (2014-07-29 14:54:11 +0800)
>>>>>
>>>>> ----------------------------------------------------------------
>>>>> ARM: mach-hisi: Hisilicon teminal soc udaptes for 3.17
>>>>>
>>>>> - Rename Hi3716 to HiX5HD2
>>>>> HiX5HD2 is a SoC with dual Cortex A9 cores for STB market.
>>>>> And original Hi3xxx SoC is for mobile market.
>>>>> To avoid confusing the two types of SoCs and also because of
>>>>> different implementation(SMP, IPs integarted and earlycon configure),
>>>>> rename Hi3716 to HIX5HD2 ann add ARCH_HIX5HD2.
>>>>>
>>>>> - Add HiX5HD2 STB SoC and development kit board support
>>>>> - Change to use power reset driver to reboot for HiX5HD2
>>>>> - Add ARCH_HISI for the common configure of hisilicon SoCs
>>>>> - Change to use CPU_METHOD_OF_DECLARE for SMP on HiX5HD2 and hi3xxx
>>>>> - Enable L2 aux value for Hi3620
>>>>>
>>>>> ----------------------------------------------------------------
>>>>> Haifeng Yan (3):
>>>>>       ARM: debug: Rename Hi3716 to HIX5HD2
>>>>>       ARM: hisi: enable hix5hd2 SoC
>>>>>       ARM: dts: Add hix5hd2-dkb dts file.
>>>
>>> Hi Olof,
>>>
>>>> It is confusing -- is the SoC named HIX5HD2 or Hisilicon X5HD2? Seems
>>>> like there are references to both.
>>>
>>> The full name is Hisilicon X5HD2.
>>> But we also call it HIX5HD2.
>>
>> Ok. I think for consistency, it's better to call it X5HD2 everywhere
>> in the kernel where it's already prefixed by Hisilicon, such as
>> compatible strings and help texts on config options.

Hi Olof,

> Hrm, I just noticed that the ethernet driver also uses
> hisilicon,hix5hd2. Based on that, it's probably easier to go back to
> hisi-hix5hd2 everywhere again. I'll rename the dts/dtsi to hisi-hi*
> again. Oh well.

Thanks for your patience and kindness!

Best Regards,
Wei

> 
> -Olof
> 
> .
> 

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

end of thread, other threads:[~2014-07-31  6:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-29  7:44 [GIT PULL v2][for 3.17] pull request for hisilicon terminal soc xuwei
2014-07-29 10:56 ` Arnd Bergmann
2014-07-31  5:32 ` Olof Johansson
2014-07-31  6:08   ` xuwei
2014-07-31  6:14     ` Olof Johansson
2014-07-31  6:16       ` Olof Johansson
2014-07-31  6:22         ` xuwei
2014-07-31  6:19       ` xuwei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).