Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Fu Wei
Hi  Daniel, Marc,

Thanks for your time.

Any feedback would be  highly appreciated!

On 17 December 2015 at 00:52, Marc Zyngier  wrote:
> On 16/12/15 16:32, Daniel Lezcano wrote:
>>
>> Marc,
>>
>> can you have a look ?
>
> Thanks for putting me in the loop. I'll look at it.
>
> M.
> --
> Jazz is not dead. It just smells funny...



-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Marc Zyngier
On 16/12/15 16:32, Daniel Lezcano wrote:
> 
> Marc,
> 
> can you have a look ?

Thanks for putting me in the loop. I'll look at it.

M.
-- 
Jazz is not dead. It just smells funny...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Daniel Lezcano


Marc,

can you have a look ?

Thanks

  -- Daniel

On 12/02/2015 06:43 AM, fu@linaro.org wrote:

From: Fu Wei 

This patchset:
 (1)Introduce ACPI GTDT parser: drivers/acpi/gtdt.c
 Parse all kinds of timer in GTDT table of ACPI:arch timer,
 memory-mapped timer and SBSA Generic Watchdog timer.
 This driver can help to simplify all the relevant timer drivers,
 and separate all the ACPI GTDT knowledge from them.

 (2)Simplify ACPI code for arch timer in arm_arch_timer.c

 (3)Add memory-mapped timer support in arm_arch_timer.c

The SBSA Generic Watchdog info parsing support have been tested with
a upstreaming SBSA Generic Watchdog driver:
https://lkml.org/lkml/2015/10/27/466
on the following platforms:
 (1)ARM Foundation v8 model
 (2)AMD Seattle platform

ARM memory-mapped timer support of this patchset has been tested
on the following platforms:
 (1)ARM Foundation v8 model

Changelog:
v2: Rebase to latest kernel version(4.4-rc3).
 Fix the bug about the config problem,
 use CONFIG_ACPI_GTDT instead of CONFIG_ACPI in arm_arch_timer.c

v1: The first upstreaming version: https://lkml.org/lkml/2015/10/28/553

Fu Wei (3):
   ACPI: add GTDT table parse driver into ACPI driver
   clocksource: simplify ACPI code in arm_arch_timer.c
   clocksource: add memory-mapped timer support in arm_arch_timer.c

  drivers/acpi/Kconfig |   9 +
  drivers/acpi/Makefile|   1 +
  drivers/acpi/gtdt.c  | 367 +++
  drivers/clocksource/arm_arch_timer.c | 178 +
  include/clocksource/arm_arch_timer.h |  19 ++
  include/linux/acpi.h |  17 ++
  6 files changed, 555 insertions(+), 36 deletions(-)
  create mode 100644 drivers/acpi/gtdt.c




--
  Linaro.org │ Open source software for ARM SoCs

Follow Linaro:   Facebook |
 Twitter |
 Blog

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Marc Zyngier
On 16/12/15 16:32, Daniel Lezcano wrote:
> 
> Marc,
> 
> can you have a look ?

Thanks for putting me in the loop. I'll look at it.

M.
-- 
Jazz is not dead. It just smells funny...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Fu Wei
Hi  Daniel, Marc,

Thanks for your time.

Any feedback would be  highly appreciated!

On 17 December 2015 at 00:52, Marc Zyngier  wrote:
> On 16/12/15 16:32, Daniel Lezcano wrote:
>>
>> Marc,
>>
>> can you have a look ?
>
> Thanks for putting me in the loop. I'll look at it.
>
> M.
> --
> Jazz is not dead. It just smells funny...



-- 
Best regards,

Fu Wei
Software Engineer
Red Hat Software (Beijing) Co.,Ltd.Shanghai Branch
Ph: +86 21 61221326(direct)
Ph: +86 186 2020 4684 (mobile)
Room 1512, Regus One Corporate Avenue,Level 15,
One Corporate Avenue,222 Hubin Road,Huangpu District,
Shanghai,China 200021
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-16 Thread Daniel Lezcano


Marc,

can you have a look ?

Thanks

  -- Daniel

On 12/02/2015 06:43 AM, fu@linaro.org wrote:

From: Fu Wei 

This patchset:
 (1)Introduce ACPI GTDT parser: drivers/acpi/gtdt.c
 Parse all kinds of timer in GTDT table of ACPI:arch timer,
 memory-mapped timer and SBSA Generic Watchdog timer.
 This driver can help to simplify all the relevant timer drivers,
 and separate all the ACPI GTDT knowledge from them.

 (2)Simplify ACPI code for arch timer in arm_arch_timer.c

 (3)Add memory-mapped timer support in arm_arch_timer.c

The SBSA Generic Watchdog info parsing support have been tested with
a upstreaming SBSA Generic Watchdog driver:
https://lkml.org/lkml/2015/10/27/466
on the following platforms:
 (1)ARM Foundation v8 model
 (2)AMD Seattle platform

ARM memory-mapped timer support of this patchset has been tested
on the following platforms:
 (1)ARM Foundation v8 model

Changelog:
v2: Rebase to latest kernel version(4.4-rc3).
 Fix the bug about the config problem,
 use CONFIG_ACPI_GTDT instead of CONFIG_ACPI in arm_arch_timer.c

v1: The first upstreaming version: https://lkml.org/lkml/2015/10/28/553

Fu Wei (3):
   ACPI: add GTDT table parse driver into ACPI driver
   clocksource: simplify ACPI code in arm_arch_timer.c
   clocksource: add memory-mapped timer support in arm_arch_timer.c

  drivers/acpi/Kconfig |   9 +
  drivers/acpi/Makefile|   1 +
  drivers/acpi/gtdt.c  | 367 +++
  drivers/clocksource/arm_arch_timer.c | 178 +
  include/clocksource/arm_arch_timer.h |  19 ++
  include/linux/acpi.h |  17 ++
  6 files changed, 555 insertions(+), 36 deletions(-)
  create mode 100644 drivers/acpi/gtdt.c




--
  Linaro.org │ Open source software for ARM SoCs

Follow Linaro:   Facebook |
 Twitter |
 Blog

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-01 Thread fu . wei
From: Fu Wei 

This patchset:
(1)Introduce ACPI GTDT parser: drivers/acpi/gtdt.c
Parse all kinds of timer in GTDT table of ACPI:arch timer,
memory-mapped timer and SBSA Generic Watchdog timer.
This driver can help to simplify all the relevant timer drivers,
and separate all the ACPI GTDT knowledge from them.

(2)Simplify ACPI code for arch timer in arm_arch_timer.c

(3)Add memory-mapped timer support in arm_arch_timer.c

The SBSA Generic Watchdog info parsing support have been tested with
a upstreaming SBSA Generic Watchdog driver:
https://lkml.org/lkml/2015/10/27/466
on the following platforms:
(1)ARM Foundation v8 model
(2)AMD Seattle platform

ARM memory-mapped timer support of this patchset has been tested
on the following platforms:
(1)ARM Foundation v8 model

Changelog:
v2: Rebase to latest kernel version(4.4-rc3).
Fix the bug about the config problem,
use CONFIG_ACPI_GTDT instead of CONFIG_ACPI in arm_arch_timer.c

v1: The first upstreaming version: https://lkml.org/lkml/2015/10/28/553

Fu Wei (3):
  ACPI: add GTDT table parse driver into ACPI driver
  clocksource: simplify ACPI code in arm_arch_timer.c
  clocksource: add memory-mapped timer support in arm_arch_timer.c

 drivers/acpi/Kconfig |   9 +
 drivers/acpi/Makefile|   1 +
 drivers/acpi/gtdt.c  | 367 +++
 drivers/clocksource/arm_arch_timer.c | 178 +
 include/clocksource/arm_arch_timer.h |  19 ++
 include/linux/acpi.h |  17 ++
 6 files changed, 555 insertions(+), 36 deletions(-)
 create mode 100644 drivers/acpi/gtdt.c

-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v2 0/3] ACPI, clocksource: add GTDT and ARM memory-mapped timer support

2015-12-01 Thread fu . wei
From: Fu Wei 

This patchset:
(1)Introduce ACPI GTDT parser: drivers/acpi/gtdt.c
Parse all kinds of timer in GTDT table of ACPI:arch timer,
memory-mapped timer and SBSA Generic Watchdog timer.
This driver can help to simplify all the relevant timer drivers,
and separate all the ACPI GTDT knowledge from them.

(2)Simplify ACPI code for arch timer in arm_arch_timer.c

(3)Add memory-mapped timer support in arm_arch_timer.c

The SBSA Generic Watchdog info parsing support have been tested with
a upstreaming SBSA Generic Watchdog driver:
https://lkml.org/lkml/2015/10/27/466
on the following platforms:
(1)ARM Foundation v8 model
(2)AMD Seattle platform

ARM memory-mapped timer support of this patchset has been tested
on the following platforms:
(1)ARM Foundation v8 model

Changelog:
v2: Rebase to latest kernel version(4.4-rc3).
Fix the bug about the config problem,
use CONFIG_ACPI_GTDT instead of CONFIG_ACPI in arm_arch_timer.c

v1: The first upstreaming version: https://lkml.org/lkml/2015/10/28/553

Fu Wei (3):
  ACPI: add GTDT table parse driver into ACPI driver
  clocksource: simplify ACPI code in arm_arch_timer.c
  clocksource: add memory-mapped timer support in arm_arch_timer.c

 drivers/acpi/Kconfig |   9 +
 drivers/acpi/Makefile|   1 +
 drivers/acpi/gtdt.c  | 367 +++
 drivers/clocksource/arm_arch_timer.c | 178 +
 include/clocksource/arm_arch_timer.h |  19 ++
 include/linux/acpi.h |  17 ++
 6 files changed, 555 insertions(+), 36 deletions(-)
 create mode 100644 drivers/acpi/gtdt.c

-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/