]> Git Repo - J-u-boot.git/blobdiff - cmd/axi.c
bootm: Drop arguments from do_bootm_states()
[J-u-boot.git] / cmd / axi.c
index 588098fddd4ae71a7e3c257a4bb3119e2e17ca74..5620891db28b1488e2480a590343e0756f73ee25 100644 (file)
--- a/cmd/axi.c
+++ b/cmd/axi.c
@@ -13,7 +13,9 @@
 #include <axi.h>
 #include <command.h>
 #include <console.h>
+#include <display_options.h>
 #include <dm.h>
+#include <log.h>
 
 /* Currently selected AXI bus device */
 static struct udevice *axi_cur_bus;
@@ -32,9 +34,9 @@ static void show_bus(struct udevice *bus)
 {
        struct udevice *dev;
 
-       printf("Bus %d:\t%s", bus->req_seq, bus->name);
+       printf("Bus %d:\t%s", dev_seq(bus), bus->name);
        if (device_active(bus))
-               printf("  (active %d)", bus->seq);
+               printf("  (active)");
        printf("\n");
        for (device_find_first_child(bus, &dev);
             dev;
@@ -96,8 +98,8 @@ static int axi_get_cur_bus(struct udevice **busp)
  * Command handlers
  */
 
-static int do_axi_show_bus(cmd_tbl_t *cmdtp, int flag, int argc,
-                          char * const argv[])
+static int do_axi_show_bus(struct cmd_tbl *cmdtp, int flag, int argc,
+                          char *const argv[])
 {
        struct udevice *dummy;
 
@@ -119,7 +121,7 @@ static int do_axi_show_bus(cmd_tbl_t *cmdtp, int flag, int argc,
                int i;
 
                /* show specific bus */
-               i = simple_strtoul(argv[1], NULL, 10);
+               i = dectoul(argv[1], NULL);
 
                struct udevice *bus;
                int ret;
@@ -135,8 +137,8 @@ static int do_axi_show_bus(cmd_tbl_t *cmdtp, int flag, int argc,
        return 0;
 }
 
-static int do_axi_bus_num(cmd_tbl_t *cmdtp, int flag, int argc,
-                         char * const argv[])
+static int do_axi_bus_num(struct cmd_tbl *cmdtp, int flag, int argc,
+                         char *const argv[])
 {
        int ret = 0;
        int bus_no;
@@ -146,13 +148,13 @@ static int do_axi_bus_num(cmd_tbl_t *cmdtp, int flag, int argc,
                struct udevice *bus;
 
                if (!axi_get_cur_bus(&bus))
-                       bus_no = bus->seq;
+                       bus_no = dev_seq(bus);
                else
                        bus_no = -1;
 
                printf("Current bus is %d\n", bus_no);
        } else {
-               bus_no = simple_strtoul(argv[1], NULL, 10);
+               bus_no = dectoul(argv[1], NULL);
                printf("Setting bus to %d\n", bus_no);
 
                ret = axi_set_cur_bus(bus_no);
@@ -163,7 +165,8 @@ static int do_axi_bus_num(cmd_tbl_t *cmdtp, int flag, int argc,
        return ret ? CMD_RET_FAILURE : 0;
 }
 
-static int do_axi_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static int do_axi_md(struct cmd_tbl *cmdtp, int flag, int argc,
+                    char *const argv[])
 {
        /* Print that many bytes per line */
        const uint DISP_LINE_LEN = 16;
@@ -191,19 +194,19 @@ static int do_axi_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        }
 
        if ((flag & CMD_FLAG_REPEAT) == 0) {
-               size = simple_strtoul(argv[1], NULL, 10);
+               size = dectoul(argv[1], NULL);
 
                /*
                 * Address is specified since argc >= 3
                 */
-               addr = simple_strtoul(argv[2], NULL, 16);
+               addr = hextoul(argv[2], NULL);
 
                /*
                 * If there's another parameter, it is the length to display;
                 * length is the number of objects, not number of bytes
                 */
                if (argc > 3)
-                       length = simple_strtoul(argv[3], NULL, 16);
+                       length = hextoul(argv[3], NULL);
        }
 
        switch (size) {
@@ -261,7 +264,8 @@ static int do_axi_md(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        return 0;
 }
 
-static int do_axi_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static int do_axi_mw(struct cmd_tbl *cmdtp, int flag, int argc,
+                    char *const argv[])
 {
        u32 writeval;
        ulong addr, count, size;
@@ -270,7 +274,7 @@ static int do_axi_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        if (argc <= 3 || argc >= 6)
                return CMD_RET_USAGE;
 
-       size = simple_strtoul(argv[1], NULL, 10);
+       size = dectoul(argv[1], NULL);
 
        switch (size) {
        case 8:
@@ -288,14 +292,14 @@ static int do_axi_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        };
 
        /* Address is specified since argc > 4 */
-       addr = simple_strtoul(argv[2], NULL, 16);
+       addr = hextoul(argv[2], NULL);
 
        /* Get the value to write */
-       writeval = simple_strtoul(argv[3], NULL, 16);
+       writeval = hextoul(argv[3], NULL);
 
        /* Count ? */
        if (argc == 5)
-               count = simple_strtoul(argv[4], NULL, 16);
+               count = hextoul(argv[4], NULL);
        else
                count = 1;
 
@@ -312,17 +316,17 @@ static int do_axi_mw(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        return 0;
 }
 
-static cmd_tbl_t cmd_axi_sub[] = {
+static struct cmd_tbl cmd_axi_sub[] = {
        U_BOOT_CMD_MKENT(bus, 1, 1, do_axi_show_bus, "", ""),
        U_BOOT_CMD_MKENT(dev, 1, 1, do_axi_bus_num, "", ""),
        U_BOOT_CMD_MKENT(md, 4, 1, do_axi_md, "", ""),
        U_BOOT_CMD_MKENT(mw, 5, 1, do_axi_mw, "", ""),
 };
 
-static int do_ihs_axi(cmd_tbl_t *cmdtp, int flag, int argc,
-                     char * const argv[])
+static int do_ihs_axi(struct cmd_tbl *cmdtp, int flag, int argc,
+                     char *const argv[])
 {
-       cmd_tbl_t *c;
+       struct cmd_tbl *c;
 
        if (argc < 2)
                return CMD_RET_USAGE;
@@ -340,11 +344,11 @@ static int do_ihs_axi(cmd_tbl_t *cmdtp, int flag, int argc,
                return CMD_RET_USAGE;
 }
 
-static char axi_help_text[] =
+U_BOOT_LONGHELP(axi,
        "bus  - show AXI bus info\n"
        "axi dev [bus] - show or set current AXI bus to bus number [bus]\n"
        "axi md size addr [# of objects] - read from AXI device at address [addr] and data width [size] (one of 8, 16, 32)\n"
-       "axi mw size addr value [count] - write data [value] to AXI device at address [addr] and data width [size] (one of 8, 16, 32)\n";
+       "axi mw size addr value [count] - write data [value] to AXI device at address [addr] and data width [size] (one of 8, 16, 32)\n");
 
 U_BOOT_CMD(axi, 7, 1, do_ihs_axi,
           "AXI sub-system",
This page took 0.027999 seconds and 4 git commands to generate.