• Haibo Chen's avatar
    gpio: pca953x: only use single read/write for No AI mode · db8edaa0
    Haibo Chen authored
    For the device use NO AI mode(not support auto address increment),
    only use the single read/write when config the regmap.
    
    We meet issue on PCA9557PW on i.MX8QXP/DXL evk board, this device
    do not support AI mode, but when do the regmap sync, regmap will
    sync 3 byte data to register 1, logically this means write first
    data to register 1, write second data to register 2, write third data
    to register 3. But this device do not support AI mode, finally, these
    three data write only into register 1 one by one. the reault is the
    value of register 1 alway equal to the latest data, here is the third
    data, no operation happened on register 2 and register 3. This is
    not what we expect.
    
    Fixes: 49427232 ("gpio: pca953x: Perform basic regmap conversion")
    Signed-off-by: default avatarHaibo Chen <haibo.chen@nxp.com>
    Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
    Signed-off-by: default avatarBartosz Golaszewski <brgl@bgdev.pl>
    db8edaa0
gpio-pca953x.c 35.1 KB