mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-12 06:03:30 +08:00
10b86ef9b3
The current implementation of reset_cpu() in the ns3 board code does not
archieve what it is supposed to (according to the comments), due to
a number of reasons:
1. The argument to reset_cpu() is _not_ actually passed from the
`reset` command, but is set to 0 in all call-sites (in this
specific case, see arch/arm/lib/reset.c). Thus, performing
different kinds of resets based on its value will not work as
expected.
2. Contrary to its documentation, the passed argument is not
interpreted, but a static `L3_RESET` define is used. The other
comment properly notes that this will always perform a L3 reset,
though.
3. The "parsing" of the static `L3_RESET` value is not even using the
upper and lower nibble as stated in the comment, but uses the last
two decimal digits of the value.
This is currently one of the only implementations left in U-Boot, which
make "use" of the value passed to reset_cpu(). As this is done under
false assumption (the value does not have any meaning anymore), it makes
sense to bring it into line with the rest and start ignoring the
parameter.
This is a preparation for removal of the reset_cpu() parameter across
the entire tree in a later patch.
Fixes:
|
||
---|---|---|
.. | ||
bcm11130 | ||
bcm11130_nand | ||
bcm23550_w1d | ||
bcm28155_ap | ||
bcm28155_w1d | ||
bcm911360_entphn | ||
bcm911360_entphn-ns | ||
bcm911360k | ||
bcm958300k | ||
bcm958300k-ns | ||
bcm958305k | ||
bcm958622hr | ||
bcm958712k | ||
bcm963158 | ||
bcm968360bg | ||
bcm968380gerg | ||
bcm968580xref | ||
bcm_ep | ||
bcmcygnus | ||
bcmns2 | ||
bcmns3 | ||
bcmnsp | ||
bcmstb |