aboutsummaryrefslogtreecommitdiff
path: root/drivers/block
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-04-25 10:54:30 -0600
committerTom Rini <trini@konsulko.com>2023-04-27 13:51:06 -0400
commit80778f505c8c7ee18c24cfbcfe011f8a2abf7bcd (patch)
treeb67a4b4918be432232506049b20f1b29f053fe3d /drivers/block
parent00a79f21c1c178d312635b96035da6aa48eb5321 (diff)
downloadu-boot-80778f505c8c7ee18c24cfbcfe011f8a2abf7bcd.zip
u-boot-80778f505c8c7ee18c24cfbcfe011f8a2abf7bcd.tar.gz
u-boot-80778f505c8c7ee18c24cfbcfe011f8a2abf7bcd.tar.bz2
ide: Move ide_init() into probing
At present the code does ide_init() as a separate operation, then calls device_probe() to copy over the information. We can call ide_init() from probe just as easily. The only difference is that using 'ide init' twice will do nothing. However it already fails to copy over the new data in that case, so the effect is the same. For now, unbind the block devices and remove the IDE device, which causes the bus to be probed again. Later patches will fix this up fully, so that all blk_desc data is copied across. Since ide_reset() is only called from ide_init(), there is no need to init the ide_dev_desc[] array. This is already done at the end of ide_init() so drop this code. The call to uclass_first_device() is now within the probe() function of the same device, so does nothing. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/ide.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/block/ide.c b/drivers/block/ide.c
index 6f601bc..1377048 100644
--- a/drivers/block/ide.c
+++ b/drivers/block/ide.c
@@ -58,8 +58,6 @@ static void ide_reset(void)
for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
ide_bus_ok[i] = 0;
- for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
- ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
ide_set_reset(1); /* assert reset */
@@ -689,9 +687,8 @@ __weak unsigned char ide_inb(int dev, int port)
return val;
}
-void ide_init(void)
+static void ide_init(void)
{
- struct udevice *dev;
unsigned char c;
int i, bus;
@@ -764,8 +761,6 @@ void ide_init(void)
dev_print(&ide_dev_desc[i]);
}
schedule();
-
- uclass_first_device(UCLASS_IDE, &dev);
}
__weak void ide_input_swap_data(int dev, ulong *sect_buf, int words)
@@ -1067,7 +1062,9 @@ static int ide_bootdev_bind(struct udevice *dev)
static int ide_bootdev_hunt(struct bootdev_hunter *info, bool show)
{
- ide_init();
+ struct udevice *dev;
+
+ uclass_first_device(UCLASS_IDE, &dev);
return 0;
}
@@ -1104,6 +1101,8 @@ static int ide_probe(struct udevice *udev)
int i;
int ret;
+ ide_init();
+
for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; i++) {
if (ide_dev_desc[i].type != DEV_TYPE_UNKNOWN) {
sprintf(name, "blk#%d", i);