soc/tegra: pmc: Restore base address on probe failure
authorJon Hunter <jonathanh@nvidia.com>
Thu, 11 Feb 2016 18:03:20 +0000 (18:03 +0000)
committerThierry Reding <treding@nvidia.com>
Tue, 5 Apr 2016 13:22:43 +0000 (15:22 +0200)
commit0259f522e04f19b433a4dc7586d80da106afbbcc
tree62ddcf85d62475e39b17906af518553e2d304fca
parent668419afe65c146e115897e8fef6ca23c48bf121
soc/tegra: pmc: Restore base address on probe failure

During early initialisation, the PMC registers are mapped and the PMC SoC
data is populated in the PMC data structure. This allows other drivers
access the PMC register space, via the public Tegra PMC APIs, prior to
probing the PMC device.

When the PMC device is probed, the PMC registers are mapped again and if
successful the initial mapping is freed. If the probing of the PMC device
fails after the registers are remapped, then the registers will be
unmapped and hence the pointer to the PMC registers will be invalid. This
could lead to a potential crash, because once the PMC SoC data pointer is
populated, the driver assumes that the PMC register mapping is also valid
and a user calling any of the public Tegra PMC APIs could trigger an
exception because these APIs don't check that the mapping is still valid.

Fix this by updating the mapping and freeing the original mapping only if
probing the PMC device is successful.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/soc/tegra/pmc.c