All of lore.kernel.org
 help / color / mirror / Atom feed
From: Akshu Agrawal <akshu.agrawal@amd.com>
Cc: djkurtz@chromium.org, akshu.agrawal@amd.com,
	Alexander.Deucher@amd.com, mturquette@baylibre.com,
	sboyd@kernel.org, christian.koenig@amd.com, airlied@redhat.com,
	Shaoyun.Liu@amd.com, linux-kernel@vger.kernel.org,
	linux-clk@vger.kernel.org, rjw@rjwysocki.net, lenb@kernel.org,
	linux-acpi@vger.kernel.org
Subject: [PATCH 0/2] Add support for general system clock on ST AMD platform
Date: Sat,  5 May 2018 01:07:17 +0800	[thread overview]
Message-ID: <1525453639-30575-1-git-send-email-akshu.agrawal@amd.com> (raw)

AMD ST/CZ platform provides a general system clock which can be used
by any driver. Registration of this clock will done in clk-st driver.
While the ACPI misc device will create the required MMIO mappings
and pass the same to the clk-st driver. The clk-st driver will
use the address to enable/disable and set frequency.

Akshu Agrawal (2):
  clk: x86: Add ST oscout platform clock
  ACPI: APD: Add AMD misc clock handler support

 drivers/acpi/acpi_apd.c              | 50 ++++++++++++++++++++
 drivers/clk/x86/Makefile             |  1 +
 drivers/clk/x86/clk-st.c             | 88 ++++++++++++++++++++++++++++++++++++
 include/linux/platform_data/clk-st.h | 35 ++++++++++++++
 4 files changed, 174 insertions(+)
 create mode 100644 drivers/clk/x86/clk-st.c
 create mode 100644 include/linux/platform_data/clk-st.h

-- 
1.9.1

WARNING: multiple messages have this Message-ID (diff)
From: Akshu Agrawal <akshu.agrawal@amd.com>
To: unlisted-recipients:; (no To-header on input)
Cc: djkurtz@chromium.org, akshu.agrawal@amd.com,
	Alexander.Deucher@amd.com, mturquette@baylibre.com,
	sboyd@kernel.org, christian.koenig@amd.com, airlied@redhat.com,
	Shaoyun.Liu@amd.com, linux-kernel@vger.kernel.org,
	linux-clk@vger.kernel.org, rjw@rjwysocki.net, lenb@kernel.org,
	linux-acpi@vger.kernel.org
Subject: [PATCH 0/2] Add support for general system clock on ST AMD platform
Date: Sat,  5 May 2018 01:07:17 +0800	[thread overview]
Message-ID: <1525453639-30575-1-git-send-email-akshu.agrawal@amd.com> (raw)

AMD ST/CZ platform provides a general system clock which can be used
by any driver. Registration of this clock will done in clk-st driver.
While the ACPI misc device will create the required MMIO mappings
and pass the same to the clk-st driver. The clk-st driver will
use the address to enable/disable and set frequency.

Akshu Agrawal (2):
  clk: x86: Add ST oscout platform clock
  ACPI: APD: Add AMD misc clock handler support

 drivers/acpi/acpi_apd.c              | 50 ++++++++++++++++++++
 drivers/clk/x86/Makefile             |  1 +
 drivers/clk/x86/clk-st.c             | 88 ++++++++++++++++++++++++++++++++++++
 include/linux/platform_data/clk-st.h | 35 ++++++++++++++
 4 files changed, 174 insertions(+)
 create mode 100644 drivers/clk/x86/clk-st.c
 create mode 100644 include/linux/platform_data/clk-st.h

-- 
1.9.1

WARNING: multiple messages have this Message-ID (diff)
From: Akshu Agrawal <akshu.agrawal@amd.com>
Cc: djkurtz@chromium.org, akshu.agrawal@amd.com,
	Alexander.Deucher@amd.com, mturquette@baylibre.com,
	sboyd@kernel.org, christian.koenig@amd.com, airlied@redhat.com,
	Shaoyun.Liu@amd.com, linux-kernel@vger.kernel.org,
	linux-clk@vger.kernel.org, rjw@rjwysocki.net, lenb@kernel.org,
	linux-acpi@vger.kernel.org
Subject: [PATCH 0/2] Add support for general system clock on ST AMD platform
Date: Sat,  5 May 2018 01:07:17 +0800	[thread overview]
Message-ID: <1525453639-30575-1-git-send-email-akshu.agrawal@amd.com> (raw)

AMD ST/CZ platform provides a general system clock which can be used
by any driver. Registration of this clock will done in clk-st driver.
While the ACPI misc device will create the required MMIO mappings
and pass the same to the clk-st driver. The clk-st driver will
use the address to enable/disable and set frequency.

Akshu Agrawal (2):
  clk: x86: Add ST oscout platform clock
  ACPI: APD: Add AMD misc clock handler support

 drivers/acpi/acpi_apd.c              | 50 ++++++++++++++++++++
 drivers/clk/x86/Makefile             |  1 +
 drivers/clk/x86/clk-st.c             | 88 ++++++++++++++++++++++++++++++++++++
 include/linux/platform_data/clk-st.h | 35 ++++++++++++++
 4 files changed, 174 insertions(+)
 create mode 100644 drivers/clk/x86/clk-st.c
 create mode 100644 include/linux/platform_data/clk-st.h

-- 
1.9.1

             reply	other threads:[~2018-05-04 17:07 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-04 17:07 Akshu Agrawal [this message]
2018-05-04 17:07 ` [PATCH 0/2] Add support for general system clock on ST AMD platform Akshu Agrawal
2018-05-04 17:07 ` Akshu Agrawal
2018-05-04 17:07 ` [PATCH v3 1/2] clk: x86: Add ST oscout platform clock Akshu Agrawal
2018-05-04 17:07   ` Akshu Agrawal
2018-05-04 17:07   ` Akshu Agrawal
2018-05-05  3:11   ` Stephen Boyd
2018-05-05  3:11     ` Stephen Boyd
2018-05-05  3:11     ` Stephen Boyd
2018-05-04 17:07 ` [PATCH v2 2/2] ACPI: APD: Add AMD misc clock handler support Akshu Agrawal
2018-05-04 17:07   ` Akshu Agrawal
2018-05-04 17:07   ` Akshu Agrawal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1525453639-30575-1-git-send-email-akshu.agrawal@amd.com \
    --to=akshu.agrawal@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=Shaoyun.Liu@amd.com \
    --cc=airlied@redhat.com \
    --cc=christian.koenig@amd.com \
    --cc=djkurtz@chromium.org \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=rjw@rjwysocki.net \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.