All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jolly Shah <jolly.shah@xilinx.com>
To: ard.biesheuvel@linaro.org, mingo@kernel.org,
	gregkh@linuxfoundation.org, matt@codeblueprint.co.uk,
	sudeep.holla@arm.com, hkallweit1@gmail.com,
	keescook@chromium.org, dmitry.torokhov@gmail.com,
	michal.simek@xilinx.com
Cc: rajanv@xilinx.com, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Rajan Vaja <rajan.vaja@xilinx.com>
Subject: [PATCH v2 0/4] firmware: xilinx: Add xilinx specific sysfs interface
Date: Wed,  8 Jan 2020 15:54:19 -0800	[thread overview]
Message-ID: <1578527663-10243-1-git-send-email-jolly.shah@xilinx.com> (raw)

From: Rajan Vaja <rajan.vaja@xilinx.com>

This patch series adds xilinx specific sysfs interface for below
purposes:
- Register access
- Set shutdown scope
- Set boot health status bit

Rajan Vaja (4):
  firmware: xilinx: Add sysfs interface
  firmware: xilinx: Add system shutdown API interface
  firmware: xilinx: Add sysfs to set shutdown scope
  firmware: xilinx: Add sysfs and IOCTL to set boot health status

 Documentation/ABI/stable/sysfs-firmware-zynqmp | 103 +++++++++
 drivers/firmware/xilinx/Makefile               |   2 +-
 drivers/firmware/xilinx/zynqmp-ggs.c           | 284 +++++++++++++++++++++++++
 drivers/firmware/xilinx/zynqmp.c               | 242 +++++++++++++++++++++
 include/linux/firmware/xlnx-zynqmp.h           |  28 ++-
 5 files changed, 657 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/ABI/stable/sysfs-firmware-zynqmp
 create mode 100644 drivers/firmware/xilinx/zynqmp-ggs.c

--
Changes in v2:
 - Removed patch #1 for register access sysfs.
 - Updated kernel version in documentation.
 - Used DEVICE_ATTR_* and ATTRIBUTE_GROUPS macros.
 - Correct typo
 - Free Kobject structure in case of error.
 - Resolved smatch errors.
 - Updated Signed-off-by sequence.
-- 
2.7.4


WARNING: multiple messages have this Message-ID (diff)
From: Jolly Shah <jolly.shah@xilinx.com>
To: ard.biesheuvel@linaro.org, mingo@kernel.org,
	gregkh@linuxfoundation.org, matt@codeblueprint.co.uk,
	sudeep.holla@arm.com, hkallweit1@gmail.com,
	keescook@chromium.org, dmitry.torokhov@gmail.com,
	michal.simek@xilinx.com
Cc: Rajan Vaja <rajan.vaja@xilinx.com>,
	rajanv@xilinx.com, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/4] firmware: xilinx: Add xilinx specific sysfs interface
Date: Wed,  8 Jan 2020 15:54:19 -0800	[thread overview]
Message-ID: <1578527663-10243-1-git-send-email-jolly.shah@xilinx.com> (raw)

From: Rajan Vaja <rajan.vaja@xilinx.com>

This patch series adds xilinx specific sysfs interface for below
purposes:
- Register access
- Set shutdown scope
- Set boot health status bit

Rajan Vaja (4):
  firmware: xilinx: Add sysfs interface
  firmware: xilinx: Add system shutdown API interface
  firmware: xilinx: Add sysfs to set shutdown scope
  firmware: xilinx: Add sysfs and IOCTL to set boot health status

 Documentation/ABI/stable/sysfs-firmware-zynqmp | 103 +++++++++
 drivers/firmware/xilinx/Makefile               |   2 +-
 drivers/firmware/xilinx/zynqmp-ggs.c           | 284 +++++++++++++++++++++++++
 drivers/firmware/xilinx/zynqmp.c               | 242 +++++++++++++++++++++
 include/linux/firmware/xlnx-zynqmp.h           |  28 ++-
 5 files changed, 657 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/ABI/stable/sysfs-firmware-zynqmp
 create mode 100644 drivers/firmware/xilinx/zynqmp-ggs.c

--
Changes in v2:
 - Removed patch #1 for register access sysfs.
 - Updated kernel version in documentation.
 - Used DEVICE_ATTR_* and ATTRIBUTE_GROUPS macros.
 - Correct typo
 - Free Kobject structure in case of error.
 - Resolved smatch errors.
 - Updated Signed-off-by sequence.
-- 
2.7.4


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2020-01-08 23:54 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-08 23:54 Jolly Shah [this message]
2020-01-08 23:54 ` [PATCH v2 0/4] firmware: xilinx: Add xilinx specific sysfs interface Jolly Shah
2020-01-08 23:54 ` [PATCH v2 1/4] firmware: xilinx: Add " Jolly Shah
2020-01-08 23:54   ` Jolly Shah
2020-01-14 14:52   ` Greg KH
2020-01-14 14:52     ` Greg KH
2020-01-23 23:47     ` Jolly Shah
2020-01-23 23:47       ` Jolly Shah
2020-01-24  6:03       ` Greg KH
2020-01-24  6:03         ` Greg KH
2020-01-24 11:32         ` Sudeep Holla
2020-01-24 11:32           ` Sudeep Holla
2020-01-27 22:46           ` Jolly Shah
2020-01-27 22:46             ` Jolly Shah
2020-01-27 23:01         ` Jolly Shah
2020-01-27 23:01           ` Jolly Shah
2020-01-28  6:28           ` Greg KH
2020-01-28  6:28             ` Greg KH
2020-01-30 23:59             ` Jolly Shah
2020-01-30 23:59               ` Jolly Shah
2020-01-31  6:10               ` Greg KH
2020-01-31  6:10                 ` Greg KH
2020-01-31  9:05                 ` Rajan Vaja
2020-01-31  9:05                   ` Rajan Vaja
2020-01-31  9:36                   ` 'Greg KH'
2020-01-31  9:36                     ` 'Greg KH'
2020-02-11  0:57                     ` Jolly Shah
2020-02-11  0:57                       ` Jolly Shah
2020-02-14 17:10                       ` 'Greg KH'
2020-02-14 17:10                         ` 'Greg KH'
2020-02-15  0:37                         ` Jolly Shah
2020-02-15  0:37                           ` Jolly Shah
2020-02-15  0:52                           ` 'Greg KH'
2020-02-15  0:52                             ` 'Greg KH'
2020-02-19 22:50                             ` Jolly Shah
2020-02-19 22:50                               ` Jolly Shah
2020-03-06 23:55                             ` Jolly Shah
2020-03-06 23:55                               ` Jolly Shah
2020-03-07  8:47                               ` 'Greg KH'
2020-03-07  8:47                                 ` 'Greg KH'
2020-01-08 23:54 ` [PATCH v2 2/4] firmware: xilinx: Add system shutdown API interface Jolly Shah
2020-01-08 23:54   ` Jolly Shah
2020-01-08 23:54 ` [PATCH v2 3/4] firmware: xilinx: Add sysfs to set shutdown scope Jolly Shah
2020-01-08 23:54   ` Jolly Shah
2020-01-08 23:54 ` [PATCH v2 4/4] firmware: xilinx: Add sysfs and IOCTL to set boot health status Jolly Shah
2020-01-08 23:54   ` Jolly Shah

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=1578527663-10243-1-git-send-email-jolly.shah@xilinx.com \
    --to=jolly.shah@xilinx.com \
    --cc=ard.biesheuvel@linaro.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hkallweit1@gmail.com \
    --cc=keescook@chromium.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matt@codeblueprint.co.uk \
    --cc=michal.simek@xilinx.com \
    --cc=mingo@kernel.org \
    --cc=rajan.vaja@xilinx.com \
    --cc=rajanv@xilinx.com \
    --cc=sudeep.holla@arm.com \
    /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.