All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] qcom SoC changes for v3.18
@ 2014-09-22 20:15 ` Kumar Gala
  0 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-22 20:15 UTC (permalink / raw)
  To: arm
  Cc: Kevin Hilman, Arnd Bergmann, linux-arm-msm, linux-kernel,
	Olof Johansson, linux-arm-kernel, Lina Iyer, Stephen Boyd,
	Olav Haugan, markivx

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18

for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:

  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)

----------------------------------------------------------------
Qualcomm ARM Based SoC Updates for v3.18

* Moved scm support into drivers/soc/qcom (allows for use by drivers)
* Various bug fixes and minor feature additions to scm code
* Added big-endian support to debug MSM uart

----------------------------------------------------------------
Lina Iyer (2):
      ARM: qcom: Add SCM warmboot flags for quad core targets.
      ARM: qcom: Move scm-boot files to drivers/soc and include/soc

Olav Haugan (1):
      ARM: qcom: scm: Add logging of actual return code from scm call

Stephen Boyd (6):
      ARM: debug: Update MSM and QCOM DEBUG_LL help
      ARM: debug: msm: Support big-endian CPUs
      ARM: qcom: scm: Fix incorrect cache invalidation
      ARM: qcom: scm: Get cacheline size from CTR
      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
      ARM: qcom: scm: Add atomic SCM APIs

Vikram Mulukutla (1):
      ARM: qcom: scm: Flush the command buffer only instead of the entire cache

 arch/arm/Kconfig.debug                             |   5 +-
 arch/arm/include/debug/msm.S                       |   6 +
 arch/arm/mach-qcom/Kconfig                         |   3 -
 arch/arm/mach-qcom/Makefile                        |   3 -
 arch/arm/mach-qcom/platsmp.c                       |   2 +-
 arch/arm/mach-qcom/scm-boot.c                      |  39 ------
 drivers/soc/qcom/Kconfig                           |   2 +
 drivers/soc/qcom/Makefile                          |   2 +
 {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
 .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
 {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
 11 files changed, 135 insertions(+), 65 deletions(-)
 delete mode 100644 arch/arm/mach-qcom/scm-boot.c
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* [GIT PULL] qcom SoC changes for v3.18
@ 2014-09-22 20:15 ` Kumar Gala
  0 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-22 20:15 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18

for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:

  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)

----------------------------------------------------------------
Qualcomm ARM Based SoC Updates for v3.18

* Moved scm support into drivers/soc/qcom (allows for use by drivers)
* Various bug fixes and minor feature additions to scm code
* Added big-endian support to debug MSM uart

----------------------------------------------------------------
Lina Iyer (2):
      ARM: qcom: Add SCM warmboot flags for quad core targets.
      ARM: qcom: Move scm-boot files to drivers/soc and include/soc

Olav Haugan (1):
      ARM: qcom: scm: Add logging of actual return code from scm call

Stephen Boyd (6):
      ARM: debug: Update MSM and QCOM DEBUG_LL help
      ARM: debug: msm: Support big-endian CPUs
      ARM: qcom: scm: Fix incorrect cache invalidation
      ARM: qcom: scm: Get cacheline size from CTR
      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
      ARM: qcom: scm: Add atomic SCM APIs

Vikram Mulukutla (1):
      ARM: qcom: scm: Flush the command buffer only instead of the entire cache

 arch/arm/Kconfig.debug                             |   5 +-
 arch/arm/include/debug/msm.S                       |   6 +
 arch/arm/mach-qcom/Kconfig                         |   3 -
 arch/arm/mach-qcom/Makefile                        |   3 -
 arch/arm/mach-qcom/platsmp.c                       |   2 +-
 arch/arm/mach-qcom/scm-boot.c                      |  39 ------
 drivers/soc/qcom/Kconfig                           |   2 +
 drivers/soc/qcom/Makefile                          |   2 +
 {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
 .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
 {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
 11 files changed, 135 insertions(+), 65 deletions(-)
 delete mode 100644 arch/arm/mach-qcom/scm-boot.c
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* Re: [GIT PULL] qcom SoC changes for v3.18 (updated)
  2014-09-22 20:15 ` Kumar Gala
@ 2014-09-22 21:54   ` Kumar Gala
  -1 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-22 21:54 UTC (permalink / raw)
  To: arm
  Cc: Kevin Hilman, Arnd Bergmann, linux-arm-msm, linux-kernel,
	Olof Johansson, linux-arm-kernel, Lina Iyer, Stephen Boyd,
	Olav Haugan, markivx

[ some how scm-boot.c got dropped, fixed now ]

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18

for you to fetch changes up to 6d42c5c5ce79b20139eec15dc359dfbcda3b3557:

  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-22 16:49:13 -0500)

----------------------------------------------------------------
Qualcomm ARM Based SoC Updates for v3.18

* Moved scm support into drivers/soc/qcom (allows for use by drivers)
* Various bug fixes and minor feature additions to scm code
* Added big-endian support to debug MSM uart

----------------------------------------------------------------
Lina Iyer (2):
      ARM: qcom: Add SCM warmboot flags for quad core targets.
      ARM: qcom: Move scm-boot files to drivers/soc and include/soc

Olav Haugan (1):
      ARM: qcom: scm: Add logging of actual return code from scm call

Stephen Boyd (6):
      ARM: debug: Update MSM and QCOM DEBUG_LL help
      ARM: debug: msm: Support big-endian CPUs
      ARM: qcom: scm: Fix incorrect cache invalidation
      ARM: qcom: scm: Get cacheline size from CTR
      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
      ARM: qcom: scm: Add atomic SCM APIs

Vikram Mulukutla (1):
      ARM: qcom: scm: Flush the command buffer only instead of the entire cache

 arch/arm/Kconfig.debug                             |   5 +-
 arch/arm/include/debug/msm.S                       |   6 +
 arch/arm/mach-qcom/Kconfig                         |   3 -
 arch/arm/mach-qcom/Makefile                        |   3 -
 arch/arm/mach-qcom/platsmp.c                       |   2 +-
 drivers/soc/qcom/Kconfig                           |   2 +
 drivers/soc/qcom/Makefile                          |   2 +
 .../arm/mach-qcom => drivers/soc/qcom}/scm-boot.c  |   4 +-
 {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
 .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
 {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
 11 files changed, 137 insertions(+), 28 deletions(-)
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm-boot.c (95%)
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* [GIT PULL] qcom SoC changes for v3.18 (updated)
@ 2014-09-22 21:54   ` Kumar Gala
  0 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-22 21:54 UTC (permalink / raw)
  To: linux-arm-kernel

[ some how scm-boot.c got dropped, fixed now ]

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18

for you to fetch changes up to 6d42c5c5ce79b20139eec15dc359dfbcda3b3557:

  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-22 16:49:13 -0500)

----------------------------------------------------------------
Qualcomm ARM Based SoC Updates for v3.18

* Moved scm support into drivers/soc/qcom (allows for use by drivers)
* Various bug fixes and minor feature additions to scm code
* Added big-endian support to debug MSM uart

----------------------------------------------------------------
Lina Iyer (2):
      ARM: qcom: Add SCM warmboot flags for quad core targets.
      ARM: qcom: Move scm-boot files to drivers/soc and include/soc

Olav Haugan (1):
      ARM: qcom: scm: Add logging of actual return code from scm call

Stephen Boyd (6):
      ARM: debug: Update MSM and QCOM DEBUG_LL help
      ARM: debug: msm: Support big-endian CPUs
      ARM: qcom: scm: Fix incorrect cache invalidation
      ARM: qcom: scm: Get cacheline size from CTR
      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
      ARM: qcom: scm: Add atomic SCM APIs

Vikram Mulukutla (1):
      ARM: qcom: scm: Flush the command buffer only instead of the entire cache

 arch/arm/Kconfig.debug                             |   5 +-
 arch/arm/include/debug/msm.S                       |   6 +
 arch/arm/mach-qcom/Kconfig                         |   3 -
 arch/arm/mach-qcom/Makefile                        |   3 -
 arch/arm/mach-qcom/platsmp.c                       |   2 +-
 drivers/soc/qcom/Kconfig                           |   2 +
 drivers/soc/qcom/Makefile                          |   2 +
 .../arm/mach-qcom => drivers/soc/qcom}/scm-boot.c  |   4 +-
 {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
 .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
 {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
 11 files changed, 137 insertions(+), 28 deletions(-)
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm-boot.c (95%)
 rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
 rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* Re: [GIT PULL] qcom SoC changes for v3.18 (updated)
  2014-09-22 21:54   ` Kumar Gala
@ 2014-09-25 22:33     ` Kumar Gala
  -1 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-25 22:33 UTC (permalink / raw)
  To: arm
  Cc: Kevin Hilman, Arnd Bergmann, linux-arm-msm, linux-kernel,
	Olof Johansson, linux-arm-kernel, Lina Iyer, Stephen Boyd,
	Olav Haugan, markivx


On Sep 22, 2014, at 4:54 PM, Kumar Gala <galak@codeaurora.org> wrote:

> [ some how scm-boot.c got dropped, fixed now ]
> 
> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> 
>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> 
> are available in the git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> 
> for you to fetch changes up to 6d42c5c5ce79b20139eec15dc359dfbcda3b3557:
> 
>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-22 16:49:13 -0500)
> 
> ----------------------------------------------------------------
> Qualcomm ARM Based SoC Updates for v3.18
> 
> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> * Various bug fixes and minor feature additions to scm code
> * Added big-endian support to debug MSM uart
> 
> ----------------------------------------------------------------
> Lina Iyer (2):
>      ARM: qcom: Add SCM warmboot flags for quad core targets.
>      ARM: qcom: Move scm-boot files to drivers/soc and include/soc
> 
> Olav Haugan (1):
>      ARM: qcom: scm: Add logging of actual return code from scm call
> 
> Stephen Boyd (6):
>      ARM: debug: Update MSM and QCOM DEBUG_LL help
>      ARM: debug: msm: Support big-endian CPUs
>      ARM: qcom: scm: Fix incorrect cache invalidation
>      ARM: qcom: scm: Get cacheline size from CTR
>      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
>      ARM: qcom: scm: Add atomic SCM APIs
> 
> Vikram Mulukutla (1):
>      ARM: qcom: scm: Flush the command buffer only instead of the entire cache
> 
> arch/arm/Kconfig.debug                             |   5 +-
> arch/arm/include/debug/msm.S                       |   6 +
> arch/arm/mach-qcom/Kconfig                         |   3 -
> arch/arm/mach-qcom/Makefile                        |   3 -
> arch/arm/mach-qcom/platsmp.c                       |   2 +-
> drivers/soc/qcom/Kconfig                           |   2 +
> drivers/soc/qcom/Makefile                          |   2 +
> .../arm/mach-qcom => drivers/soc/qcom}/scm-boot.c  |   4 +-
> {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
> .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
> {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
> 11 files changed, 137 insertions(+), 28 deletions(-)
> rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm-boot.c (95%)
> rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
> rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
> rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
> — 

ping.

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* [GIT PULL] qcom SoC changes for v3.18 (updated)
@ 2014-09-25 22:33     ` Kumar Gala
  0 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-09-25 22:33 UTC (permalink / raw)
  To: linux-arm-kernel


On Sep 22, 2014, at 4:54 PM, Kumar Gala <galak@codeaurora.org> wrote:

> [ some how scm-boot.c got dropped, fixed now ]
> 
> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> 
>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> 
> are available in the git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> 
> for you to fetch changes up to 6d42c5c5ce79b20139eec15dc359dfbcda3b3557:
> 
>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-22 16:49:13 -0500)
> 
> ----------------------------------------------------------------
> Qualcomm ARM Based SoC Updates for v3.18
> 
> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> * Various bug fixes and minor feature additions to scm code
> * Added big-endian support to debug MSM uart
> 
> ----------------------------------------------------------------
> Lina Iyer (2):
>      ARM: qcom: Add SCM warmboot flags for quad core targets.
>      ARM: qcom: Move scm-boot files to drivers/soc and include/soc
> 
> Olav Haugan (1):
>      ARM: qcom: scm: Add logging of actual return code from scm call
> 
> Stephen Boyd (6):
>      ARM: debug: Update MSM and QCOM DEBUG_LL help
>      ARM: debug: msm: Support big-endian CPUs
>      ARM: qcom: scm: Fix incorrect cache invalidation
>      ARM: qcom: scm: Get cacheline size from CTR
>      ARM: qcom: scm: Move the scm driver to drivers/soc/qcom
>      ARM: qcom: scm: Add atomic SCM APIs
> 
> Vikram Mulukutla (1):
>      ARM: qcom: scm: Flush the command buffer only instead of the entire cache
> 
> arch/arm/Kconfig.debug                             |   5 +-
> arch/arm/include/debug/msm.S                       |   6 +
> arch/arm/mach-qcom/Kconfig                         |   3 -
> arch/arm/mach-qcom/Makefile                        |   3 -
> arch/arm/mach-qcom/platsmp.c                       |   2 +-
> drivers/soc/qcom/Kconfig                           |   2 +
> drivers/soc/qcom/Makefile                          |   2 +
> .../arm/mach-qcom => drivers/soc/qcom}/scm-boot.c  |   4 +-
> {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c     | 131 ++++++++++++++++++---
> .../arm/mach-qcom => include/soc/qcom}/scm-boot.h  |   2 +
> {arch/arm/mach-qcom => include/soc/qcom}/scm.h     |   5 +-
> 11 files changed, 137 insertions(+), 28 deletions(-)
> rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm-boot.c (95%)
> rename {arch/arm/mach-qcom => drivers/soc/qcom}/scm.c (67%)
> rename {arch/arm/mach-qcom => include/soc/qcom}/scm-boot.h (92%)
> rename {arch/arm/mach-qcom => include/soc/qcom}/scm.h (80%)
> ? 

ping.

- k

-- 
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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

* Re: [GIT PULL] qcom SoC changes for v3.18
  2014-09-22 20:15 ` Kumar Gala
@ 2014-10-01 14:41   ` Arnd Bergmann
  -1 siblings, 0 replies; 15+ messages in thread
From: Arnd Bergmann @ 2014-10-01 14:41 UTC (permalink / raw)
  To: Kumar Gala
  Cc: arm, Kevin Hilman, linux-arm-msm, linux-kernel, Olof Johansson,
	linux-arm-kernel, Lina Iyer, Stephen Boyd, Olav Haugan, markivx

On Monday 22 September 2014, Kumar Gala wrote:
> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> 
>   Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> 
> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
> 
>   ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
> 
> ----------------------------------------------------------------
> Qualcomm ARM Based SoC Updates for v3.18
> 
> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> * Various bug fixes and minor feature additions to scm code
> * Added big-endian support to debug MSM uart

Pulled it into next/late now. This means we're not sending it together with the
other pull requests to Linus. We'll see how things go during the first week
and may or may not send it in the second week of the merge window depending
on that.

	Arnd

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

* [GIT PULL] qcom SoC changes for v3.18
@ 2014-10-01 14:41   ` Arnd Bergmann
  0 siblings, 0 replies; 15+ messages in thread
From: Arnd Bergmann @ 2014-10-01 14:41 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 22 September 2014, Kumar Gala wrote:
> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> 
>   Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> 
> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
> 
>   ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
> 
> ----------------------------------------------------------------
> Qualcomm ARM Based SoC Updates for v3.18
> 
> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> * Various bug fixes and minor feature additions to scm code
> * Added big-endian support to debug MSM uart

Pulled it into next/late now. This means we're not sending it together with the
other pull requests to Linus. We'll see how things go during the first week
and may or may not send it in the second week of the merge window depending
on that.

	Arnd

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

* Re: [GIT PULL] qcom SoC changes for v3.18
  2014-10-01 14:41   ` Arnd Bergmann
@ 2014-10-15  8:18     ` Kumar Gala
  -1 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-10-15  8:18 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: arm, Kevin Hilman, linux-arm-msm, linux-kernel, Olof Johansson,
	linux-arm-kernel, Lina Iyer, Stephen Boyd, Olav Haugan, markivx


On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:

> On Monday 22 September 2014, Kumar Gala wrote:
>> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
>> 
>>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
>> 
>> are available in the git repository at:
>> 
>>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
>> 
>> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
>> 
>>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
>> 
>> ----------------------------------------------------------------
>> Qualcomm ARM Based SoC Updates for v3.18
>> 
>> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
>> * Various bug fixes and minor feature additions to scm code
>> * Added big-endian support to debug MSM uart
> 
> Pulled it into next/late now. This means we're not sending it together with the
> other pull requests to Linus. We'll see how things go during the first week
> and may or may not send it in the second week of the merge window depending
> on that.
> 
> 	Arnd

Any update if you guys will end up sending this to linus for 3.18 or not?

- k

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [GIT PULL] qcom SoC changes for v3.18
@ 2014-10-15  8:18     ` Kumar Gala
  0 siblings, 0 replies; 15+ messages in thread
From: Kumar Gala @ 2014-10-15  8:18 UTC (permalink / raw)
  To: linux-arm-kernel


On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:

> On Monday 22 September 2014, Kumar Gala wrote:
>> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
>> 
>>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
>> 
>> are available in the git repository at:
>> 
>>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
>> 
>> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
>> 
>>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
>> 
>> ----------------------------------------------------------------
>> Qualcomm ARM Based SoC Updates for v3.18
>> 
>> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
>> * Various bug fixes and minor feature additions to scm code
>> * Added big-endian support to debug MSM uart
> 
> Pulled it into next/late now. This means we're not sending it together with the
> other pull requests to Linus. We'll see how things go during the first week
> and may or may not send it in the second week of the merge window depending
> on that.
> 
> 	Arnd

Any update if you guys will end up sending this to linus for 3.18 or not?

- k

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [GIT PULL] qcom SoC changes for v3.18
  2014-10-15  8:18     ` Kumar Gala
  (?)
@ 2014-10-16 17:52       ` Olof Johansson
  -1 siblings, 0 replies; 15+ messages in thread
From: Olof Johansson @ 2014-10-16 17:52 UTC (permalink / raw)
  To: Kumar Gala
  Cc: Arnd Bergmann, arm, Kevin Hilman, linux-arm-msm, linux-kernel,
	linux-arm-kernel, Lina Iyer, Stephen Boyd, Olav Haugan, markivx

Hi,

On Wed, Oct 15, 2014 at 1:18 AM, Kumar Gala <galak@codeaurora.org> wrote:
>
> On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:
>
>> On Monday 22 September 2014, Kumar Gala wrote:
>>> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
>>>
>>>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
>>>
>>> are available in the git repository at:
>>>
>>>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
>>>
>>> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
>>>
>>>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
>>>
>>> ----------------------------------------------------------------
>>> Qualcomm ARM Based SoC Updates for v3.18
>>>
>>> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
>>> * Various bug fixes and minor feature additions to scm code
>>> * Added big-endian support to debug MSM uart
>>
>> Pulled it into next/late now. This means we're not sending it together with the
>> other pull requests to Linus. We'll see how things go during the first week
>> and may or may not send it in the second week of the merge window depending
>> on that.
>>
>>       Arnd
>
> Any update if you guys will end up sending this to linus for 3.18 or not?

There ended up being several issues with the next/late branch so I
believe the current outlook is that we'll not send it.

(Arnd has been handling most of the 3.18 stuff and he might have
changed his mind since we last talked about it, but that's the state
as far as i know).


-Olof

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

* Re: [GIT PULL] qcom SoC changes for v3.18
@ 2014-10-16 17:52       ` Olof Johansson
  0 siblings, 0 replies; 15+ messages in thread
From: Olof Johansson @ 2014-10-16 17:52 UTC (permalink / raw)
  To: Kumar Gala
  Cc: Arnd Bergmann, arm, Kevin Hilman, linux-arm-msm, linux-kernel,
	linux-arm-kernel, Lina Iyer, Stephen Boyd, Olav Haugan, markivx

Hi,

On Wed, Oct 15, 2014 at 1:18 AM, Kumar Gala <galak@codeaurora.org> wrote:
>
> On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:
>
>> On Monday 22 September 2014, Kumar Gala wrote:
>>> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
>>>
>>>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
>>>
>>> are available in the git repository at:
>>>
>>>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
>>>
>>> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
>>>
>>>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
>>>
>>> ----------------------------------------------------------------
>>> Qualcomm ARM Based SoC Updates for v3.18
>>>
>>> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
>>> * Various bug fixes and minor feature additions to scm code
>>> * Added big-endian support to debug MSM uart
>>
>> Pulled it into next/late now. This means we're not sending it together with the
>> other pull requests to Linus. We'll see how things go during the first week
>> and may or may not send it in the second week of the merge window depending
>> on that.
>>
>>       Arnd
>
> Any update if you guys will end up sending this to linus for 3.18 or not?

There ended up being several issues with the next/late branch so I
believe the current outlook is that we'll not send it.

(Arnd has been handling most of the 3.18 stuff and he might have
changed his mind since we last talked about it, but that's the state
as far as i know).


-Olof

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

* [GIT PULL] qcom SoC changes for v3.18
@ 2014-10-16 17:52       ` Olof Johansson
  0 siblings, 0 replies; 15+ messages in thread
From: Olof Johansson @ 2014-10-16 17:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Wed, Oct 15, 2014 at 1:18 AM, Kumar Gala <galak@codeaurora.org> wrote:
>
> On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:
>
>> On Monday 22 September 2014, Kumar Gala wrote:
>>> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
>>>
>>>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
>>>
>>> are available in the git repository at:
>>>
>>>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
>>>
>>> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
>>>
>>>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
>>>
>>> ----------------------------------------------------------------
>>> Qualcomm ARM Based SoC Updates for v3.18
>>>
>>> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
>>> * Various bug fixes and minor feature additions to scm code
>>> * Added big-endian support to debug MSM uart
>>
>> Pulled it into next/late now. This means we're not sending it together with the
>> other pull requests to Linus. We'll see how things go during the first week
>> and may or may not send it in the second week of the merge window depending
>> on that.
>>
>>       Arnd
>
> Any update if you guys will end up sending this to linus for 3.18 or not?

There ended up being several issues with the next/late branch so I
believe the current outlook is that we'll not send it.

(Arnd has been handling most of the 3.18 stuff and he might have
changed his mind since we last talked about it, but that's the state
as far as i know).


-Olof

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

* Re: [GIT PULL] qcom SoC changes for v3.18
  2014-10-15  8:18     ` Kumar Gala
@ 2015-01-14 22:04       ` Andy Gross
  -1 siblings, 0 replies; 15+ messages in thread
From: Andy Gross @ 2015-01-14 22:04 UTC (permalink / raw)
  To: Kumar Gala
  Cc: Arnd Bergmann, arm, Kevin Hilman, linux-arm-msm, linux-kernel,
	Olof Johansson, linux-arm-kernel, Lina Iyer, Stephen Boyd,
	Olav Haugan, markivx

On Wed, Oct 15, 2014 at 10:18:30AM +0200, Kumar Gala wrote:
> 
> On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:
> 
> > On Monday 22 September 2014, Kumar Gala wrote:
> >> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> >> 
> >>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> >> 
> >> are available in the git repository at:
> >> 
> >>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> >> 
> >> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
> >> 
> >>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
> >> 
> >> ----------------------------------------------------------------
> >> Qualcomm ARM Based SoC Updates for v3.18
> >> 
> >> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> >> * Various bug fixes and minor feature additions to scm code
> >> * Added big-endian support to debug MSM uart
> > 
> > Pulled it into next/late now. This means we're not sending it together with the
> > other pull requests to Linus. We'll see how things go during the first week
> > and may or may not send it in the second week of the merge window depending
> > on that.
> > 
> > 	Arnd
> 
> Any update if you guys will end up sending this to linus for 3.18 or not?

Where are we on this set of changes?  Have they been queued up again?

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* [GIT PULL] qcom SoC changes for v3.18
@ 2015-01-14 22:04       ` Andy Gross
  0 siblings, 0 replies; 15+ messages in thread
From: Andy Gross @ 2015-01-14 22:04 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Oct 15, 2014 at 10:18:30AM +0200, Kumar Gala wrote:
> 
> On Oct 1, 2014, at 4:41 PM, Arnd Bergmann <arnd@arndb.de> wrote:
> 
> > On Monday 22 September 2014, Kumar Gala wrote:
> >> The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:
> >> 
> >>  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)
> >> 
> >> are available in the git repository at:
> >> 
> >>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-soc-for-3.18
> >> 
> >> for you to fetch changes up to 525fbb55947177cdae507b0d292f43c2c9a75a47:
> >> 
> >>  ARM: qcom: Move scm-boot files to drivers/soc and include/soc (2014-09-18 18:14:01 -0500)
> >> 
> >> ----------------------------------------------------------------
> >> Qualcomm ARM Based SoC Updates for v3.18
> >> 
> >> * Moved scm support into drivers/soc/qcom (allows for use by drivers)
> >> * Various bug fixes and minor feature additions to scm code
> >> * Added big-endian support to debug MSM uart
> > 
> > Pulled it into next/late now. This means we're not sending it together with the
> > other pull requests to Linus. We'll see how things go during the first week
> > and may or may not send it in the second week of the merge window depending
> > on that.
> > 
> > 	Arnd
> 
> Any update if you guys will end up sending this to linus for 3.18 or not?

Where are we on this set of changes?  Have they been queued up again?

-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

end of thread, other threads:[~2015-01-14 22:04 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-22 20:15 [GIT PULL] qcom SoC changes for v3.18 Kumar Gala
2014-09-22 20:15 ` Kumar Gala
2014-09-22 21:54 ` [GIT PULL] qcom SoC changes for v3.18 (updated) Kumar Gala
2014-09-22 21:54   ` Kumar Gala
2014-09-25 22:33   ` Kumar Gala
2014-09-25 22:33     ` Kumar Gala
2014-10-01 14:41 ` [GIT PULL] qcom SoC changes for v3.18 Arnd Bergmann
2014-10-01 14:41   ` Arnd Bergmann
2014-10-15  8:18   ` Kumar Gala
2014-10-15  8:18     ` Kumar Gala
2014-10-16 17:52     ` Olof Johansson
2014-10-16 17:52       ` Olof Johansson
2014-10-16 17:52       ` Olof Johansson
2015-01-14 22:04     ` Andy Gross
2015-01-14 22:04       ` Andy Gross

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.