blob: 5a1688b75d09f08e38590ca4937d71d966db652b [file] [log] [blame]
Simon Glassf8b4a292022-04-24 23:31:14 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
Simon Glass41571582023-07-12 09:04:32 -06003 * Bootdev for MMC
Simon Glassf8b4a292022-04-24 23:31:14 -06004 *
5 * Copyright 2021 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
Simon Glassf8b4a292022-04-24 23:31:14 -06009#include <bootdev.h>
10#include <dm.h>
11#include <mmc.h>
12
Simon Glassf8b4a292022-04-24 23:31:14 -060013static int mmc_bootdev_bind(struct udevice *dev)
14{
15 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
16
Simon Glass7e1f6a42023-01-17 10:48:08 -070017 ucp->prio = BOOTDEVP_2_INTERNAL_FAST;
Simon Glassf8b4a292022-04-24 23:31:14 -060018
19 return 0;
20}
21
22struct bootdev_ops mmc_bootdev_ops = {
Simon Glassf8b4a292022-04-24 23:31:14 -060023};
24
25static const struct udevice_id mmc_bootdev_ids[] = {
26 { .compatible = "u-boot,bootdev-mmc" },
27 { }
28};
29
30U_BOOT_DRIVER(mmc_bootdev) = {
31 .name = "mmc_bootdev",
32 .id = UCLASS_BOOTDEV,
33 .ops = &mmc_bootdev_ops,
34 .bind = mmc_bootdev_bind,
35 .of_match = mmc_bootdev_ids,
36};
Simon Glassdf71f262023-01-17 10:47:38 -070037
38BOOTDEV_HUNTER(mmc_bootdev_hunter) = {
Simon Glass7e1f6a42023-01-17 10:48:08 -070039 .prio = BOOTDEVP_2_INTERNAL_FAST,
Simon Glassdf71f262023-01-17 10:47:38 -070040 .uclass = UCLASS_MMC,
41 .drv = DM_DRIVER_REF(mmc_bootdev),
42};