lkml.org 
[lkml]   [2024]   [May]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH] Input: goodix-berlin - Add sysfs interface for reading and writing touch IC registers
    Hi all,

    On Tue, May 07, 2024 at 11:36:41PM +0900, Mark Brown wrote:
    > On Mon, May 06, 2024 at 07:13:38PM -0700, Dmitry Torokhov wrote:
    > > On Mon, May 06, 2024 at 02:03:13PM +0200, Hans de Goede wrote:
    >
    > > > If raw register access is seen as a good solution, then I think this
    > > > should use regmap + some generic helpers (to be written) to export
    > > > regmap r/w access to userspace.
    >
    > > I think the less code we have in kernel the better, especially if in
    > > cases where firmware flashing is not essential for device to work (i.e.
    > > it the controller has a flash memory). That said IIRC Mark felt very
    > > strongly about allowing regmap writes from userspace... but maybe he
    > > softened the stance or we could have this functionality opt-in?
    >
    > I think unmediated raw register access is a terrible idea, you can't
    > safely write a driver if userspace can just go in and randomly write to
    > registers with no coordination with the running driver and for some
    > devices the kernel needs to ensure that any writes don't damage or
    > destabalise the system. If a driver provides an interface that looks
    > like raw register accesses that's of course fine (I mean, a lot of
    > firmware formats basically boil down to register write sequences which
    > is clearly fine) but it should be the driver doing that and it should be
    > looking at what's going on and ensure that it's joined up with the needs
    > of the rest of the system.

    I happen to agree here; especially in the case of writing new FW to a
    flash; this is a very hardware-centric and device-specific function,
    which by definition belongs in a kernel driver.

    For example, many devices must be placed in a bootloader mode during
    the FW update, and may clamp or toggle an interrupt pin during this
    mode switch. If user space initiates this sequence while the driver is
    unaware of this process, it may attempt to read status registers from
    an I2C address that is temporarily offline.

    A much more common design pattern is for the driver to expose one W/O
    sysfs attribute for accepting the FW file name, and one R/O attribute
    for displaying the current FW version in flash. A small script runs at
    start-up to check the version against what is stored on "disk", and if
    what is stored in flash is deemed out of date, the script writes to the
    W/O attribute. This is the extent of user space's involvement.

    Kind regards,
    Jeff LaBundy

    \
     
     \ /
      Last update: 2024-05-27 18:19    [W:2.882 / U:0.152 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site