From: "Verma, Vishal L" <vishal.l.verma@intel.com> To: "Williams, Dan J" <dan.j.williams@intel.com> Cc: "Widawsky, Ben" <ben.widawsky@intel.com>, "linux-cxl@vger.kernel.org" <linux-cxl@vger.kernel.org>, "nvdimm@lists.linux.dev" <nvdimm@lists.linux.dev> Subject: Re: [ndctl PATCH v4 07/17] libcxl: add GET_HEALTH_INFO mailbox command and accessors Date: Tue, 2 Nov 2021 20:22:45 +0000 [thread overview] Message-ID: <fc7be48811b489b24f0287764d421e7482219638.camel@intel.com> (raw) In-Reply-To: <CAPcyv4ifss448zuSRphx4d5RAtjZkgiBQirbLPMAJF04NPnZLg@mail.gmail.com> On Thu, 2021-10-14 at 09:01 -0700, Dan Williams wrote: > ) > > On Thu, Oct 7, 2021 at 1:22 AM Vishal Verma <vishal.l.verma@intel.com> wrote: > > > > Add libcxl APIs to create a new GET_HEALTH_INFO mailbox command, the > > command output data structure (privately), and accessor APIs to return > > the different fields in the health info output. > > > > Cc: Ben Widawsky <ben.widawsky@intel.com> > > Cc: Dan Williams <dan.j.williams@intel.com> > > Signed-off-by: Vishal Verma <vishal.l.verma@intel.com> > > --- > > cxl/lib/private.h | 47 ++++++++ > > cxl/lib/libcxl.c | 286 +++++++++++++++++++++++++++++++++++++++++++++ > > cxl/libcxl.h | 38 ++++++ > > util/bitmap.h | 23 ++++ > > cxl/lib/libcxl.sym | 31 +++++ > > 5 files changed, 425 insertions(+) > > > > diff --git a/cxl/lib/private.h b/cxl/lib/private.h > > index 3273f21..f76b518 100644 > > --- a/cxl/lib/private.h > > +++ b/cxl/lib/private.h > > @@ -73,6 +73,53 @@ struct cxl_cmd_identify { > > u8 qos_telemetry_caps; > > } __attribute__((packed)); > > > > +struct cxl_cmd_get_health_info { > > + u8 health_status; > > + u8 media_status; > > + u8 ext_status; > > + u8 life_used; > > + le16 temperature; > > + le32 dirty_shutdowns; > > + le32 volatile_errors; > > + le32 pmem_errors; > > +} __attribute__((packed)); > > + > > +/* CXL 2.0 8.2.9.5.3 Byte 0 Health Status */ > > +#define CXL_CMD_HEALTH_INFO_STATUS_MAINTENANCE_NEEDED_MASK BIT(0) > > +#define CXL_CMD_HEALTH_INFO_STATUS_PERFORMANCE_DEGRADED_MASK BIT(1) > > +#define CXL_CMD_HEALTH_INFO_STATUS_HW_REPLACEMENT_NEEDED_MASK BIT(2) > > + > > +/* CXL 2.0 8.2.9.5.3 Byte 1 Media Status */ > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NORMAL 0x0 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NOT_READY 0x1 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOST 0x2 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOST 0x3 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_PERSISTENCE_LOSS 0x4 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_PERSISTENCE_LOSS 0x5 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOSS_IMMINENT 0x6 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_DATA_LOSS 0x7 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_DATA_LOSS 0x8 > > +#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOSS_IMMINENT 0x9 > > + > > +/* CXL 2.0 8.2.9.5.3 Byte 2 Additional Status */ > > +#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_MASK GENMASK(1, 0) > > +#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_NORMAL 0x0 > > +#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_WARNING 0x1 > > +#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_CRITICAL 0x2 > > +#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_MASK GENMASK(3, 2) > > +#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_NORMAL (0x0 << 2) > > +#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_WARNING (0x1 << 2) > > +#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_CRITICAL (0x2 << 2) > > So the kernel style for this would be to have: > > #define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_NORMAL (0) > #define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_WARNING (1) > #define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_CRITICAL (2) > > ...and then to check the value it would be: > > FIELD_GET(CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_MASK, c->ext_status) == > CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_NORMAL > > ...that way if we ever wanted to copy libcxl bits into the kernel it > will already be in the matching style to other CXL bitwise > definitions. > > I think FIELD_GET() would also clarify a few of your helpers below, > but yeah a bit more infrastructure to import. Looking at porting over FIELD_GET.. It wants to do '__BF_FIELD_CHECK()', which pulls in a lot of the compiletime_assert stuff to be able to BUILD_BUG_ON with a message. Any suggestions on how much we want to bring in? I could drop the __BF_FIELD_CHECK checks, and then it's very straightforward. Or bring in the checks, but with a plain BUILD_BUG_ON instead of BUILD_BUG_ON_MSG.. > > The rest of this looks ok to me.
next prev parent reply other threads:[~2021-11-02 20:22 UTC|newest] Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-10-07 8:21 [ndctl PATCH v4 00/17] Initial CXL support Vishal Verma 2021-10-07 8:21 ` [ndctl PATCH v4 01/17] ndctl: add .clang-format Vishal Verma 2021-10-07 8:21 ` [ndctl PATCH v4 02/17] cxl: add a cxl utility and libcxl library Vishal Verma 2021-10-07 8:21 ` [ndctl PATCH v4 03/17] cxl: add a local copy of the cxl_mem UAPI header Vishal Verma 2021-10-07 8:21 ` [ndctl PATCH v4 04/17] util: add the struct_size() helper from the kernel Vishal Verma 2021-10-14 2:40 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 05/17] libcxl: add support for command query and submission Vishal Verma 2021-10-14 2:53 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 06/17] libcxl: add support for the 'Identify Device' command Vishal Verma 2021-10-07 8:21 ` [ndctl PATCH v4 07/17] libcxl: add GET_HEALTH_INFO mailbox command and accessors Vishal Verma 2021-10-14 16:01 ` Dan Williams 2021-11-02 20:22 ` Verma, Vishal L [this message] 2021-11-02 20:27 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 08/17] libcxl: add support for the 'GET_LSA' command Vishal Verma 2021-10-14 16:35 ` Dan Williams 2021-10-14 20:06 ` Verma, Vishal L 2021-10-14 20:55 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 09/17] util/hexdump: Add a util helper to print a buffer in hex Vishal Verma 2021-10-14 16:48 ` Dan Williams 2021-10-14 20:33 ` Verma, Vishal L 2021-10-14 22:39 ` Dan Williams 2021-11-02 20:25 ` Verma, Vishal L 2021-10-07 8:21 ` [ndctl PATCH v4 10/17] libcxl: add label_size to cxl_memdev, and an API to retrieve it Vishal Verma 2021-10-14 18:24 ` Dan Williams 2021-10-14 21:50 ` Verma, Vishal L 2021-10-07 8:21 ` [ndctl PATCH v4 11/17] libcxl: add a stub interface to determine whether a memdev is active Vishal Verma 2021-10-14 19:59 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 12/17] libcxl: add interfaces for label operations Vishal Verma 2021-10-14 21:27 ` Dan Williams 2021-10-14 22:18 ` Verma, Vishal L 2021-10-14 22:24 ` Verma, Vishal L 2021-10-14 22:45 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 13/17] cxl: add commands to read, write, and zero labels Vishal Verma 2021-10-14 22:34 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 14/17] Documentation/cxl: add library API documentation Vishal Verma 2021-10-14 23:31 ` Dan Williams 2021-11-05 18:58 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 15/17] ndctl: Add CXL packages to the RPM spec Vishal Verma 2021-10-14 23:33 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 16/17] cxl-cli: add bash completion Vishal Verma 2021-10-14 23:34 ` Dan Williams 2021-10-07 8:21 ` [ndctl PATCH v4 17/17] cxl: add health information to cxl-list Vishal Verma 2021-10-11 22:07 ` Verma, Vishal L 2021-10-15 0:09 ` Dan Williams 2021-10-14 23:42 ` Verma, Vishal L 2021-10-15 21:15 ` Dan Williams
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=fc7be48811b489b24f0287764d421e7482219638.camel@intel.com \ --to=vishal.l.verma@intel.com \ --cc=ben.widawsky@intel.com \ --cc=dan.j.williams@intel.com \ --cc=linux-cxl@vger.kernel.org \ --cc=nvdimm@lists.linux.dev \ --subject='Re: [ndctl PATCH v4 07/17] libcxl: add GET_HEALTH_INFO mailbox command and accessors' \ /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
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).