hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// SPDX-License-Identifier: GPL-2.0+
/*
 * (C) Copyright 2018  Cisco Systems, Inc.
 *
 * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
 */
 
#include <common.h>
#include <mach/sdhci.h>
#include <malloc.h>
#include <sdhci.h>
 
/*
 * The BCMSTB SDHCI has a quirk in that its actual maximum frequency
 * capability is 100 MHz.  The divisor that is eventually written to
 * SDHCI_CLOCK_CONTROL is calculated based on what the MMC device
 * reports, and relative to this maximum frequency.
 *
 * This define used to be set to 52000000 (52 MHz), the desired
 * maximum frequency, but that would result in the communication
 * actually running at 100 MHz (seemingly without issue), which is
 * out-of-spec.
 *
 * Now, by setting this to 0 (auto-detect), 100 MHz will be read from
 * the capabilities register, and the resulting divisor will be
 * doubled, meaning that the clock control register will be set to the
 * in-spec 52 MHz value.
 */
#define BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY    0
/*
 * When the minimum clock frequency is set to 0 (auto-detect), U-Boot
 * sets it to 100 MHz divided by SDHCI_MAX_DIV_SPEC_300, or 48,875 Hz,
 * which results in the controller timing out when trying to
 * communicate with the MMC device.  Hard-code this value to 400000
 * (400 kHz) to prevent this.
 */
#define BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY    400000
 
static char *BCMSTB_SDHCI_NAME = "bcmstb-sdhci";
 
/*
 * This driver has only been tested with eMMC devices; SD devices may
 * not work.
 */
int bcmstb_sdhci_init(phys_addr_t regbase)
{
   struct sdhci_host *host = NULL;
 
   host = (struct sdhci_host *)malloc(sizeof(struct sdhci_host));
   if (!host) {
       printf("%s: Failed to allocate memory\n", __func__);
       return 1;
   }
   memset(host, 0, sizeof(*host));
 
   host->name = BCMSTB_SDHCI_NAME;
   host->ioaddr = (void *)regbase;
   host->quirks = 0;
 
   host->cfg.part_type = PART_TYPE_DOS;
 
   host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
 
   return add_sdhci(host,
            BCMSTB_SDHCI_MAXIMUM_CLOCK_FREQUENCY,
            BCMSTB_SDHCI_MINIMUM_CLOCK_FREQUENCY);
}