blob: 00d1fb8f598276d8a77c39aa974a66597b430d88 [file] [log] [blame]
Patrick Delaunaycf073432020-03-18 09:22:45 +01001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2/*
3 * Copyright (C) 2020, STMicroelectronics - All Rights Reserved
4 */
5
6#include <common.h>
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +01007#include <blk.h>
Simon Glass7130b952020-07-19 10:15:40 -06008#include <dm.h>
Patrick Delaunaycf073432020-03-18 09:22:45 +01009#include <dfu.h>
10#include <env.h>
Patrick Delaunay9742bee2020-11-06 19:02:00 +010011#include <log.h>
Patrick Delaunaycf073432020-03-18 09:22:45 +010012#include <memalign.h>
13#include <misc.h>
14#include <mtd.h>
15#include <mtd_node.h>
Patrick Delaunay7daa91d2020-03-18 09:24:49 +010016#include <asm/arch/stm32prog.h>
Patrick Delaunaycf073432020-03-18 09:22:45 +010017
18#define DFU_ALT_BUF_LEN SZ_1K
19
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +010020static void board_get_alt_info_mmc(struct udevice *dev, char *buf)
Patrick Delaunaycf073432020-03-18 09:22:45 +010021{
Simon Glassc1c4a8f2020-05-10 11:39:57 -060022 struct disk_partition info;
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +010023 int p, len, devnum;
24 bool first = true;
25 const char *name;
26 struct mmc *mmc;
27 struct blk_desc *desc;
Patrick Delaunaycf073432020-03-18 09:22:45 +010028
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +010029 mmc = mmc_get_mmc_dev(dev);
30 if (!mmc)
31 return;
32
33 if (mmc_init(mmc))
34 return;
35
36 desc = mmc_get_blk_desc(mmc);
37 if (!desc)
38 return;
39
40 name = blk_get_if_type_name(desc->if_type);
41 devnum = desc->devnum;
42 len = strlen(buf);
Patrick Delaunaycf073432020-03-18 09:22:45 +010043
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +010044 if (buf[0] != '\0')
45 len += snprintf(buf + len,
46 DFU_ALT_BUF_LEN - len, "&");
47 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
48 "%s %d=", name, devnum);
49
50 if (IS_MMC(mmc) && mmc->capacity_boot) {
51 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
52 "%s%d_boot1 raw 0x0 0x%llx mmcpart 1;",
53 name, devnum, mmc->capacity_boot);
54 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
55 "%s%d_boot2 raw 0x0 0x%llx mmcpart 2",
56 name, devnum, mmc->capacity_boot);
57 first = false;
58 }
59
60 for (p = 1; p < MAX_SEARCH_PARTITIONS; p++) {
61 if (part_get_info(desc, p, &info))
62 continue;
63 if (!first)
64 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len, ";");
65 first = false;
66 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
67 "%s%d_%s part %d %d",
68 name, devnum, info.name, devnum, p);
Patrick Delaunaycf073432020-03-18 09:22:45 +010069 }
70}
71
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +010072static void board_get_alt_info_mtd(struct mtd_info *mtd, char *buf)
73{
74 struct mtd_info *part;
75 bool first = true;
76 const char *name;
77 int len, partnum = 0;
78
79 name = mtd->name;
80 len = strlen(buf);
81
82 if (buf[0] != '\0')
83 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len, "&");
84 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
85 "mtd %s=", name);
86
87 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
88 "%s raw 0x0 0x%llx ",
89 name, mtd->size);
90
91 list_for_each_entry(part, &mtd->partitions, node) {
92 partnum++;
93 if (!first)
94 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len, ";");
95 first = false;
96
97 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
98 "%s_%s part %d",
99 name, part->name, partnum);
100 }
101}
102
Patrick Delaunaycf073432020-03-18 09:22:45 +0100103void set_dfu_alt_info(char *interface, char *devstr)
104{
105 struct udevice *dev;
106 struct mtd_info *mtd;
107
108 ALLOC_CACHE_ALIGN_BUFFER(char, buf, DFU_ALT_BUF_LEN);
109
110 if (env_get("dfu_alt_info"))
111 return;
112
113 memset(buf, 0, sizeof(buf));
114
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +0100115 snprintf(buf, DFU_ALT_BUF_LEN,
116 "ram 0=%s", CONFIG_DFU_ALT_RAM0);
Patrick Delaunaycf073432020-03-18 09:22:45 +0100117
Patrick Delaunayb7b67522020-07-31 16:31:46 +0200118 if (CONFIG_IS_ENABLED(MMC)) {
119 if (!uclass_get_device(UCLASS_MMC, 0, &dev))
120 board_get_alt_info_mmc(dev, buf);
Patrick Delaunaycf073432020-03-18 09:22:45 +0100121
Patrick Delaunayb7b67522020-07-31 16:31:46 +0200122 if (!uclass_get_device(UCLASS_MMC, 1, &dev))
123 board_get_alt_info_mmc(dev, buf);
124 }
Patrick Delaunaycf073432020-03-18 09:22:45 +0100125
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +0100126 if (CONFIG_IS_ENABLED(MTD)) {
127 /* probe all MTD devices */
128 mtd_probe_devices();
Patrick Delaunaycf073432020-03-18 09:22:45 +0100129
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +0100130 /* probe SPI flash device on a bus */
131 if (!uclass_get_device(UCLASS_SPI_FLASH, 0, &dev)) {
132 mtd = get_mtd_device_nm("nor0");
133 if (!IS_ERR_OR_NULL(mtd))
134 board_get_alt_info_mtd(mtd, buf);
135 }
Patrick Delaunaycf073432020-03-18 09:22:45 +0100136
Patrick Delaunayc7d5b8c2020-03-18 09:22:46 +0100137 mtd = get_mtd_device_nm("nand0");
138 if (!IS_ERR_OR_NULL(mtd))
139 board_get_alt_info_mtd(mtd, buf);
140
141 mtd = get_mtd_device_nm("spi-nand0");
142 if (!IS_ERR_OR_NULL(mtd))
143 board_get_alt_info_mtd(mtd, buf);
144 }
Patrick Delaunaycf073432020-03-18 09:22:45 +0100145
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100146 if (IS_ENABLED(CONFIG_DFU_VIRT) &&
147 IS_ENABLED(CMD_STM32PROG_USB)) {
Patrick Delaunayb7b67522020-07-31 16:31:46 +0200148 strncat(buf, "&virt 0=OTP", DFU_ALT_BUF_LEN);
Patrick Delaunaycf073432020-03-18 09:22:45 +0100149
Patrick Delaunayb7b67522020-07-31 16:31:46 +0200150 if (IS_ENABLED(CONFIG_PMIC_STPMIC1))
151 strncat(buf, "&virt 1=PMIC", DFU_ALT_BUF_LEN);
152 }
Patrick Delaunaycf073432020-03-18 09:22:45 +0100153
154 env_set("dfu_alt_info", buf);
155 puts("DFU alt info setting: done\n");
156}
157
158#if CONFIG_IS_ENABLED(DFU_VIRT)
159#include <dfu.h>
160#include <power/stpmic1.h>
161
162static int dfu_otp_read(u64 offset, u8 *buffer, long *size)
163{
164 struct udevice *dev;
165 int ret;
166
167 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700168 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunaycf073432020-03-18 09:22:45 +0100169 &dev);
170 if (ret)
171 return ret;
172
173 ret = misc_read(dev, offset + STM32_BSEC_OTP_OFFSET, buffer, *size);
174 if (ret >= 0) {
175 *size = ret;
176 ret = 0;
177 }
178
179 return 0;
180}
181
182static int dfu_pmic_read(u64 offset, u8 *buffer, long *size)
183{
184 int ret;
185#ifdef CONFIG_PMIC_STPMIC1
186 struct udevice *dev;
187
188 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700189 DM_DRIVER_GET(stpmic1_nvm),
Patrick Delaunaycf073432020-03-18 09:22:45 +0100190 &dev);
191 if (ret)
192 return ret;
193
194 ret = misc_read(dev, 0xF8 + offset, buffer, *size);
195 if (ret >= 0) {
196 *size = ret;
197 ret = 0;
198 }
199 if (ret == -EACCES) {
200 *size = 0;
201 ret = 0;
202 }
203#else
Patrick Delaunay9742bee2020-11-06 19:02:00 +0100204 log_err("PMIC update not supported");
Patrick Delaunaycf073432020-03-18 09:22:45 +0100205 ret = -EOPNOTSUPP;
206#endif
207
208 return ret;
209}
210
211int dfu_read_medium_virt(struct dfu_entity *dfu, u64 offset,
212 void *buf, long *len)
213{
214 switch (dfu->data.virt.dev_num) {
215 case 0x0:
216 return dfu_otp_read(offset, buf, len);
217 case 0x1:
218 return dfu_pmic_read(offset, buf, len);
219 }
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100220
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100221 if (IS_ENABLED(CONFIG_CMD_STM32PROG_USB) &&
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100222 dfu->data.virt.dev_num >= STM32PROG_VIRT_FIRST_DEV_NUM)
223 return stm32prog_read_medium_virt(dfu, offset, buf, len);
224
Patrick Delaunaycf073432020-03-18 09:22:45 +0100225 *len = 0;
226 return 0;
227}
228
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100229int dfu_write_medium_virt(struct dfu_entity *dfu, u64 offset,
230 void *buf, long *len)
231{
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100232 if (IS_ENABLED(CONFIG_CMD_STM32PROG_USB) &&
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100233 dfu->data.virt.dev_num >= STM32PROG_VIRT_FIRST_DEV_NUM)
234 return stm32prog_write_medium_virt(dfu, offset, buf, len);
235
236 return -EOPNOTSUPP;
237}
238
Patrick Delaunaycf073432020-03-18 09:22:45 +0100239int __weak dfu_get_medium_size_virt(struct dfu_entity *dfu, u64 *size)
240{
Patrick Delaunay29b2e2e2021-02-25 13:37:01 +0100241 if (IS_ENABLED(CONFIG_CMD_STM32PROG_USB) &&
Patrick Delaunay7daa91d2020-03-18 09:24:49 +0100242 dfu->data.virt.dev_num >= STM32PROG_VIRT_FIRST_DEV_NUM)
243 return stm32prog_get_medium_size_virt(dfu, size);
244
Patrick Delaunaycf073432020-03-18 09:22:45 +0100245 *size = SZ_1K;
246
247 return 0;
248}
249
250#endif