mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 22:24:32 +00:00
15347d2dea
Refactors similar mux code from multiple NXP boards into a common location, and allows it to be disabled in config. New config: CONFIG_FSL_USE_PCA9547_MUX to enable PCA9547 mux functionality. Signed-off-by: Stephen Carlson <stcarlso@linux.microsoft.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
15 lines
306 B
C
15 lines
306 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
* Copyright 2020-21 NXP
|
|
* Copyright 2021 Microsoft Corporation
|
|
*/
|
|
|
|
#ifndef __NXP_I2C_MUX_H__
|
|
#define __NXP_I2C_MUX_H__
|
|
|
|
#ifdef CONFIG_FSL_USE_PCA9547_MUX
|
|
int select_i2c_ch_pca9547(u8 ch, int bus);
|
|
#endif
|
|
|
|
#endif
|