blob: 40ba0f7a96056ee9f495457785e303b156920789 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Ledvich69632042017-09-24 09:00:25 +03002/*
3 * SPL/U-Boot common functions for CompuLab CL-SOM-iMX7 module
4 *
5 * (C) Copyright 2017 CompuLab, Ltd. http://www.compulab.com
6 *
7 * Author: Uri Mashiach <uri.mashiach@compulab.co.il>
Ilya Ledvich69632042017-09-24 09:00:25 +03008 */
9
10#include <common.h>
Yangbo Lue37ac712019-06-21 11:42:28 +080011#include <fsl_esdhc_imx.h>
Ilya Ledvich69632042017-09-24 09:00:25 +030012#include <asm-generic/gpio.h>
13#include "common.h"
14
15#ifdef CONFIG_SPI
16
17#define CL_SOM_IMX7_GPIO_SPI_CS IMX_GPIO_NR(4, 19)
18
19int board_spi_cs_gpio(unsigned int bus, unsigned int cs)
20{
21 return CL_SOM_IMX7_GPIO_SPI_CS;
22}
23
24#endif /* CONFIG_SPI */
25
Yangbo Lue37ac712019-06-21 11:42:28 +080026#ifdef CONFIG_FSL_ESDHC_IMX
Ilya Ledvich69632042017-09-24 09:00:25 +030027
28int board_mmc_getcd(struct mmc *mmc)
29{
30 struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv;
31 int ret = 0;
32
33 switch (cfg->esdhc_base) {
34 case USDHC1_BASE_ADDR:
35 ret = !gpio_get_value(CL_SOM_IMX7_GPIO_USDHC1_CD);
36 break;
37 case USDHC3_BASE_ADDR:
38 ret = 1; /* Assume uSDHC3 emmc is always present */
39 break;
40 }
41
42 return ret;
43}
44
Yangbo Lue37ac712019-06-21 11:42:28 +080045#endif /* CONFIG_FSL_ESDHC_IMX */