diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-02-03 20:47:38 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-04 06:08:20 +0100 |
commit | 2354ef8869a287cf4c7de792c17485ad82b026cf (patch) | |
tree | dab61044490e3d44214dcc7e8a10f858bed956f8 /src/cpu/samsung/exynos5-common/spl.h | |
parent | aa6701c090c013c1783b138e02277090615508ee (diff) |
exynos/snow: get rid of board-specific arbitration code
Snow's AP, EC, PMU, and smarty battery share a bus. Both the AP and
EC can act as a master, so to avoid conflicts an arbitration
mechanism consisting of two GPIOs is used.
By default, the AP "owns" the bus unless it is off (in which case
the EC doesn't monitor the arbitration pins). This means the boot
firmware does not need to worry about these lines. The payload may
if it needs to communicate with the EC, though.
In any case, board-specific bus arbitration logic does not belong
in a low-level driver that is supposed to be generic for an entire
CPU family. If the payload needs to talk to the EC, we'll deal with
it there.
Change-Id: I0774d4592af2b21b6ad668441532c5ceab988404
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: http://review.coreboot.org/2272
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/samsung/exynos5-common/spl.h')
-rw-r--r-- | src/cpu/samsung/exynos5-common/spl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/samsung/exynos5-common/spl.h b/src/cpu/samsung/exynos5-common/spl.h index 439e1b0383..afa9a8e909 100644 --- a/src/cpu/samsung/exynos5-common/spl.h +++ b/src/cpu/samsung/exynos5-common/spl.h @@ -91,8 +91,4 @@ struct spl_machine_param *spl_get_machine_params(void); */ void spl_early_init(void); -/* FIXME(dhendrix): for early i2c init */ -void board_i2c_release_bus(int node); -int board_i2c_claim_bus(int node); - #endif /* __ASM_ARCH_EXYNOS_SPL_H__ */ |