OSDN Git Service

clk: starfive: Avoid casting iomem pointers
authorStephen Boyd <sboyd@kernel.org>
Thu, 13 Apr 2023 20:55:28 +0000 (13:55 -0700)
committerStephen Boyd <sboyd@kernel.org>
Thu, 13 Apr 2023 22:45:46 +0000 (15:45 -0700)
commitd1aae06630230daf747ef5bc291c19ea7f046129
tree98401f569fd481dde7ad9af2201324ee4d9f8b29
parent601e5d464d535d655917c2cfb29c394d367fb676
clk: starfive: Avoid casting iomem pointers

Let's use a wrapper struct for the auxiliary_device made in
jh7110_reset_controller_register() so that we can stop casting iomem
pointers. The casts trip up tools like sparse, and make for some awkward
casts that are largely unnecessary. While we're here, change the
allocation from devm and actually free the auxiliary_device memory in
the release function. This avoids any use after free problems where the
parent device driver is unbound from the device but the
auxiliuary_device is still in use accessing devm freed memory.

Cc: Tommaso Merciai <tomm.merciai@gmail.com>
Cc: Emil Renner Berthing <emil.renner.berthing@canonical.com>
Cc: Hal Feng <hal.feng@starfivetech.com>
Cc: Conor Dooley <conor.dooley@microchip.com>
Cc: Xingyu Wu <xingyu.wu@starfivetech.com>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Fixes: edab7204afe5 ("clk: starfive: Add StarFive JH7110 system clock driver")
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20230413205528.4044216-1-sboyd@kernel.org
drivers/clk/starfive/clk-starfive-jh7110-sys.c
drivers/reset/starfive/reset-starfive-jh7110.c
include/soc/starfive/reset-starfive-jh71x0.h [new file with mode: 0644]