open-sdr / openwifi

open-source IEEE 802.11 WiFi baseband FPGA (chip) design: driver, software
GNU Affero General Public License v3.0
3.68k stars 627 forks source link

Execution of self compiled drivers failed for Release 1.4.0 Notter for the "zcu102_fmcs2-board" #334

Open SteffenFri opened 10 months ago

SteffenFri commented 10 months ago

Hi,

I followed the last developments of the openwifi project with high interest and I have successfully started the new release Notter 1.4.0 by using the "zed_fmcs2-board" and the "zcu102_fmcs2-board" by utilizing the image of your main website and following the instructions in the section "Quick Start".

In the following I would like to make some modifications to the driver and update the software on the "zed_fmcs2-board" and the "zcu102_fmcs2-board" as described on your main website in the section "Update Driver". I am using seperate versions for the 32-bit an d 64-bit driver.

At first I have cloned the repository and tried to compile and execute the driver without any modification. For the "zed_fmcs2-board" I have successfully compiled the driver, transfered the 32-bit version to the "zed_fmcs2-board" and loaded the driver by starting the script "wgd.sh". For the zcu102_fmcs2-board I successfully compiled the driver and transfered the 64-bit version to the "zcu102_fmcs2-board". By executing the driver I get an error message where it is mentioned that the driver has a wrong format.

I get the following output by executing the command "./make_all.sh /tools/Xilinx "64"" to compile the driver on my computer without any errors:

You must enter at least 2 arguments: $XILINX_DIR ARCH_BIT(32 or 64)
Further arguments (maximum 5) will be converted to #define argument in pre_def.h

OPENWIFI_DIR /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../
XILINX_DIR /tools/Xilinx
ARCH_OPTION 64
$OPENWIFI_DIR is found!
$XILINX_DIR is found!
$ARCH_OPTION is valid!
setup linux kernel path /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/
++ pwd
+ home_dir=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/
+ git log -1
commit 39862403f422c1e3cf15906ec30bab741b427ca9 (HEAD -> master, origin/master, origin/HEAD)
Author: Jiao Xianjun <xianjun.jiao@ugent.be>
Date:   Mon Jun 26 14:20:14 2023 +0200

    Update the citation format of openwifi project.
++ git log -1 --pretty=%h
+ echo '#define GIT_REV 0x3986240'
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/openofdm_tx
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.o
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c: In function 'dev_probe':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:133:37: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  133 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", openofdm_tx_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                  ~~~^                                                                            ~~~~~~~~~
      |                                     |                                                                              |
      |                                     unsigned int                                                                   resource_size_t {aka long long unsigned int}
      |                                  %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:133:48: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  133 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", openofdm_tx_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                             ~~~^                                                                           ~~~~~~~
      |                                                |                                                                             |
      |                                                unsigned int                                                                  resource_size_t {aka long long unsigned int}
      |                                             %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:134:71: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  134 | s dev_probe base_addr 0x%08x\n", openofdm_tx_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:135:90: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  135 | m_tx_driver_api_inst 0x%08x\n", openofdm_tx_compatible_str, (u32)&openofdm_tx_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:136:90: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  136 |      openofdm_tx_api 0x%08x\n", openofdm_tx_compatible_str, (u32)openofdm_tx_api);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c: In function 'dev_remove':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:149:72: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  149 |  dev_remove base_addr 0x%08x\n", openofdm_tx_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:150:91: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  150 | m_tx_driver_api_inst 0x%08x\n", openofdm_tx_compatible_str, (u32)&openofdm_tx_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.c:151:91: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  151 |      openofdm_tx_api 0x%08x\n", openofdm_tx_compatible_str, (u32)openofdm_tx_api);
      |                                                             ^

  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/Module.symvers
WARNING: modpost: "openofdm_tx_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/openofdm_rx
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx modules 
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.o
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c: In function 'dev_probe':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:154:37: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  154 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", openofdm_rx_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                  ~~~^                                                                            ~~~~~~~~~
      |                                     |                                                                              |
      |                                     unsigned int                                                                   resource_size_t {aka long long unsigned int}
      |                                  %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:154:48: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  154 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", openofdm_rx_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                             ~~~^                                                                           ~~~~~~~
      |                                                |                                                                             |
      |                                                unsigned int                                                                  resource_size_t {aka long long unsigned int}
      |                                             %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:155:71: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  155 | s dev_probe base_addr 0x%08x\n", openofdm_rx_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:156:90: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  156 | m_rx_driver_api_inst 0x%08x\n", openofdm_rx_compatible_str, (u32)&openofdm_rx_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:157:90: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  157 |      openofdm_rx_api 0x%08x\n", openofdm_rx_compatible_str, (u32)openofdm_rx_api);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c: In function 'dev_remove':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:170:72: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  170 |  dev_remove base_addr 0x%08x\n", openofdm_rx_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:171:91: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  171 | m_rx_driver_api_inst 0x%08x\n", openofdm_rx_compatible_str, (u32)&openofdm_rx_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.c:172:91: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  172 |      openofdm_rx_api 0x%08x\n", openofdm_rx_compatible_str, (u32)openofdm_rx_api);
      |                                                             ^

  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/Module.symvers
WARNING: modpost: "openofdm_rx_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/tx_intf
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/tx_intf.o
  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/Module.symvers
WARNING: modpost: "tx_intf_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/tx_intf] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/tx_intf.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/tx_intf.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/rx_intf
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.o
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c: In function 'dev_probe':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:406:27: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  406 |  rx_intf_api->base_addr = (u32)base_addr;
      |                           ^
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:408:37: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  408 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", rx_intf_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                  ~~~^                                                                        ~~~~~~~~~
      |                                     |                                                                          |
      |                                     unsigned int                                                               resource_size_t {aka long long unsigned int}
      |                                  %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:408:48: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  408 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", rx_intf_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                             ~~~^                                                                       ~~~~~~~
      |                                                |                                                                         |
      |                                                unsigned int                                                              resource_size_t {aka long long unsigned int}
      |                                             %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:409:67: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  409 | k("%s dev_probe base_addr 0x%08x\n", rx_intf_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:410:82: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  410 |  rx_intf_driver_api_inst 0x%08x\n", rx_intf_compatible_str, (u32)(&rx_intf_driver_api_inst) );
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:411:82: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  411 |              rx_intf_api 0x%08x\n", rx_intf_compatible_str, (u32)rx_intf_api);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c: In function 'dev_remove':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:425:69: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  425 | "%s dev_remove base_addr 0x%08x\n", rx_intf_compatible_str, (u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:426:83: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  426 |  rx_intf_driver_api_inst 0x%08x\n", rx_intf_compatible_str, (u32)(&rx_intf_driver_api_inst) );
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.c:427:83: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  427 |              rx_intf_api 0x%08x\n", rx_intf_compatible_str, (u32)rx_intf_api);
      |                                                             ^

  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/Module.symvers
WARNING: modpost: "rx_intf_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/xpu
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.o
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c: In function 'dev_probe':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:504:37: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  504 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", xpu_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                  ~~~^                                                                    ~~~~~~~~~
      |                                     |                                                                      |
      |                                     unsigned int                                                           resource_size_t {aka long long unsigned int}
      |                                  %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:504:48: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Wformat=]
  504 |  printk("%s dev_probe io start 0x%08x end 0x%08x name %s flags 0x%08x desc 0x%08x\n", xpu_compatible_str,io->start,io->end,io->name,(u32)io->flags,(u32)io->desc);
      |                                             ~~~^                                                                   ~~~~~~~
      |                                                |                                                                     |
      |                                                unsigned int                                                          resource_size_t {aka long long unsigned int}
      |                                             %08llx
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:505:63: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  505 | rintk("%s dev_probe base_addr 0x%08x\n", xpu_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:506:74: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  506 | ev_probe xpu_driver_api_inst 0x%08x\n", xpu_compatible_str, (u32)&xpu_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:507:74: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  507 | ev_probe             xpu_api 0x%08x\n", xpu_compatible_str, (u32)xpu_api);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c: In function 'dev_remove':
/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:529:64: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  529 | intk("%s dev_remove base_addr 0x%08x\n", xpu_compatible_str,(u32)base_addr);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:530:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  530 | v_remove xpu_driver_api_inst 0x%08x\n", xpu_compatible_str, (u32)&xpu_driver_api_inst);
      |                                                             ^

/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.c:531:75: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  531 | v_remove             xpu_api 0x%08x\n", xpu_compatible_str, (u32)xpu_api);
      |                                                             ^

  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/Module.symvers
WARNING: modpost: "xpu_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/side_ch
+ ./make_driver.sh /tools/Xilinx 64
$OPENWIFI_DIR is found!
$XILINX_DIR is found!
$ARCH_OPTION is valid!
 setup linux kernel path /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/../../adi-linux-64/
++ pwd
+ home_dir=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/../../driver/side_ch
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/../../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/../../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/side_ch.o
  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/Module.symvers
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/side_ch.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch/side_ch.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/side_ch
+ cd /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../driver/
+ make KDIR=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu-
make -C /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/../adi-linux-64/ M=/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver modules
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird betreten
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/sdr.o
  MODPOST /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/Module.symvers
WARNING: modpost: "openofdm_tx_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_tx/openofdm_tx] is a static EXPORT_SYMBOL
WARNING: modpost: "openofdm_rx_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/openofdm_rx/openofdm_rx] is a static EXPORT_SYMBOL
WARNING: modpost: "tx_intf_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/tx_intf/tx_intf] is a static EXPORT_SYMBOL
WARNING: modpost: "rx_intf_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/rx_intf/rx_intf] is a static EXPORT_SYMBOL
WARNING: modpost: "xpu_api" [/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/xpu/xpu] is a static EXPORT_SYMBOL
  CC [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/sdr.mod.o
  LD [M]  /home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/driver/sdr.ko
make[1]: Verzeichnis „/home/OpenWiFi/OpenwifiRepo_1.4.0_64Bit/openwifi/adi-linux-64“ wird verlassen
# ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

After executing the "./wgd.sh" script on the "zcu102_fmcs2-board" I get the following output:

usage:
  Script for load (or download+load) different driver and FPGA img without rebooting
  no  argument: Load .ko driver files and FPGA img (if system_top.bit.bin exist) in current dir with test_mode=0.
  1st argument: If it is a NUMBER, it will be assigned to test_mode. Then load everything from current dir.
  1st argument: If it is a string called "remote", it will download driver/FPGA and load everything.
  - 2nd argument (if exist) is the target directory name for downloading and reloading
  - 3rd argument (if exist) is the value for test_mode
  1st argument: neither NUMBER nor "remote" nor a .tar.gz file, it is regarded as a directory and load everything from it.
  - 2nd argument (if exist) is the value for test_mode
  1st argument: a .tar.gz file, it will be unpacked then load from that unpacked directory
  - 2nd argument (if exist) is the value for test_mode

insmod: ERROR: could not load module ad9361_drv.ko: No such file or directory
Module                  Size  Used by
xilinx_dma             32768  0
8021q                  28672  0
uio_pdrv_genirq        16384  0
TARGET_DIR ./
DOWNLOAD_FLAG 0
test_mode 0
tx_offset_tuning_enable 0
$TARGET_DIR is found!

hostapd: no process found
dhcpd: no process found
sdr0: ERROR while getting interface flags: No such device
rmmod: ERROR: Module sdr is not currently loaded
./system_top.bit.bin not found. Skip reloading FPGA.
./load_fpga_img.sh: line 14: warning: command substitution: ignored null byte in input
xlnx,zynqmp-zcu102-rev1.0xlnx,zynqmp-zcu102xlnx,zynqmp
fjdo349ujtrueugjhj
fjdo349ujtrueugjhj
+ ifconfig sdr0 down
sdr0: ERROR while getting interface flags: No such device
+ rmmod sdr
rmmod: ERROR: Module sdr is not currently loaded
+ rmmod openofdm_rx
rmmod: ERROR: Module openofdm_rx is not currently loaded
+ rmmod openofdm_tx
rmmod: ERROR: Module openofdm_tx is not currently loaded
+ rmmod rx_intf
rmmod: ERROR: Module rx_intf is not currently loaded
+ rmmod tx_intf
rmmod: ERROR: Module tx_intf is not currently loaded
+ rmmod xpu
rmmod: ERROR: Module xpu is not currently loaded
+ sleep 1
+ '[' -f fjdo349ujtrueugjhj ']'
+ '[' xlnx,zynqmp-zcu102-rev1.0xlnx,zynqmp-zcu102xlnx,zynqmp '!=' xlnx,zynq-7000 ']'
+ SPI_DEVNAME=spi1.0
+ DDS_DEVNAME=99024000.cf-ad9361-dds-core-lpc
+ ADC_DEVNAME=99020000.cf-ad9361-lpc
+ '[' '!' -d /sys/bus/spi/drivers/ad9361/spi1.0 ']'
+ cd /sys/bus/spi/drivers/ad9361/
+ echo spi1.0
+ echo spi1.0
+ '[' '!' -d /sys/bus/platform/drivers/cf_axi_adc/99020000.cf-ad9361-lpc ']'
+ cd /sys/bus/platform/drivers/cf_axi_adc/
+ echo 99020000.cf-ad9361-lpc
+ echo 99020000.cf-ad9361-lpc
+ set +x
tx_offset_tuning_enable 0
openwifi_ad9361_fir_tx_0MHz_11n.ftr tx_fir_enable 1
Found openwifi_ad9361_fir_tx_0MHz_11n.ftr
+ test -f /sys/bus/iio/devices/iio:device0/in_voltage_rf_bandwidth
+ test -f /sys/bus/iio/devices/iio:device1/in_voltage_rf_bandwidth
+ cd /sys/bus/iio/devices/iio:device1/
+ set +x
FIR Rx: 48,1 Tx: 48,1
1
1
rx0 agc fast_attack
slow_attack
fast_attack
rx1 agc fast_attack
slow_attack
fast_attack
40000000
25215513
40000000
25215414
rssi
97.00 dB
113.50 dB
rx0 gain to 70
69.000000 dB
./rf_init_11n.sh: 101: echo: echo: I/O error
69.000000 dB
rx1 gain to 70
73.000000 dB
./rf_init_11n.sh: 106: echo: echo: I/O error
73.000000 dB
tx0 gain -89dB
-10.000000 dB
-89.000000 dB
tx1 gain 0dB
-10.000000 dB
0.000000 dB
rmmod: ERROR: Module tx_intf is not currently loaded
+ insmod ./tx_intf.ko
insmod: ERROR: could not insert module ./tx_intf.ko: Invalid module format
tx_intf is not loaded!

After executing the the command "dmesg" to look at the debug error messages I get the following output where it is mentioned that the driver has a wrong kernel version:

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.10.0-98248-g1bbe32fa5182-dirty (xjiao@wh-laptop) (aarch64-xilinx-linux-gcc.real (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.0.20200730) #3 SMP Sat Feb 4 14:03:09 CET 2023
[    0.000000] Machine model: ZynqMP ZCU102 Rev1.0
[    0.000000] earlycon: cdns0 at MMIO 0x00000000ff000000 (options '115200n8')
[    0.000000] printk: bootconsole [cdns0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] cma: Reserved 256 MiB at 0x0000000070000000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000000000-0x000000003fffffff]
[    0.000000]   DMA32    [mem 0x0000000040000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000087fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000]   node   0: [mem 0x0000000800000000-0x000000087fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000087fffffff]
[    0.000000] On node 0 totalpages: 1048576
[    0.000000]   DMA zone: 3584 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 262144 pages, LIFO batch:63
[    0.000000]   DMA32 zone: 3584 pages used for memmap
[    0.000000]   DMA32 zone: 262144 pages, LIFO batch:63
[    0.000000]   Normal zone: 7168 pages used for memmap
[    0.000000]   Normal zone: 524288 pages, LIFO batch:63
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 22 pages/cpu s49496 r8192 d32424 u90112
[    0.000000] pcpu-alloc: s49496 r8192 d32424 u90112 alloc=22*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1034240
[    0.000000] Kernel command line: console=ttyPS0,115200 root=/dev/mmcblk0p2 rw earlycon rootfstype=ext4 rootwait clk_ignore_unused cpuidle.off=1 root=/dev/mmcblk0p2 rw rootwait
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x000000003bfff000-0x000000003ffff000] (64MB)
[    0.000000] Memory: 3761116K/4194304K available (15744K kernel code, 1696K rwdata, 12016K rodata, 2624K init, 508K bss, 171044K reserved, 262144K cma-reserved)
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GIC: Adjusting CPU interface base to 0x00000000f902f000
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] random: get_random_bytes called from start_kernel+0x31c/0x550 with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
[    0.000003] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
[    0.008490] Console: colour dummy device 80x25
[    0.012484] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
[    0.022840] pid_max: default: 32768 minimum: 301
[    0.027561] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.034788] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.043436] rcu: Hierarchical SRCU implementation.
[    0.047572] EFI services will not be available.
[    0.051941] smp: Bringing up secondary CPUs ...
[    0.056664] Detected VIPT I-cache on CPU1
[    0.056704] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.057078] Detected VIPT I-cache on CPU2
[    0.057102] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.057446] Detected VIPT I-cache on CPU3
[    0.057470] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.057517] smp: Brought up 1 node, 4 CPUs
[    0.091779] SMP: Total of 4 processors activated.
[    0.096452] CPU features: detected: 32-bit EL0 Support
[    0.101555] CPU features: detected: CRC32 instructions
[    0.106694] CPU: All CPU(s) started at EL2
[    0.110736] alternatives: patching kernel code
[    0.116203] devtmpfs: initialized
[    0.124511] Registered cp15_barrier emulation handler
[    0.124563] Registered setend emulation handler
[    0.128543] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.138124] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.151582] pinctrl core: initialized pinctrl subsystem
[    0.152339] NET: Registered protocol family 16
[    0.156660] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.162667] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.170390] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.178198] audit: initializing netlink subsys (disabled)
[    0.183660] audit: type=2000 audit(0.116:1): state=initialized audit_enabled=0 res=1
[    0.184002] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.198027] ASID allocator initialised with 65536 entries
[    0.224341] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.225394] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.232066] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.238727] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    1.304479] DRBG: Continuing without Jitter RNG
[    1.382178] raid6: neonx8   gen()  2145 MB/s
[    1.450229] raid6: neonx8   xor()  1597 MB/s
[    1.518291] raid6: neonx4   gen()  2194 MB/s
[    1.586351] raid6: neonx4   xor()  1562 MB/s
[    1.654416] raid6: neonx2   gen()  2079 MB/s
[    1.722468] raid6: neonx2   xor()  1435 MB/s
[    1.790542] raid6: neonx1   gen()  1780 MB/s
[    1.858593] raid6: neonx1   xor()  1220 MB/s
[    1.926647] raid6: int64x8  gen()  1437 MB/s
[    1.994712] raid6: int64x8  xor()   771 MB/s
[    2.062784] raid6: int64x4  gen()  1601 MB/s
[    2.130835] raid6: int64x4  xor()   817 MB/s
[    2.198904] raid6: int64x2  gen()  1395 MB/s
[    2.266974] raid6: int64x2  xor()   746 MB/s
[    2.335032] raid6: int64x1  gen()  1032 MB/s
[    2.403089] raid6: int64x1  xor()   517 MB/s
[    2.403126] raid6: using algorithm neonx4 gen() 2194 MB/s
[    2.407077] raid6: .... xor() 1562 MB/s, rmw enabled
[    2.412013] raid6: using neon recovery algorithm
[    2.417053] iommu: Default domain type: Translated 
[    2.421649] SCSI subsystem initialized
[    2.425178] libata version 3.00 loaded.
[    2.425305] usbcore: registered new interface driver usbfs
[    2.430636] usbcore: registered new interface driver hub
[    2.435912] usbcore: registered new device driver usb
[    2.441044] mc: Linux media interface: v0.10
[    2.445163] videodev: Linux video capture interface: v2.00
[    2.450635] pps_core: LinuxPPS API ver. 1 registered
[    2.455523] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.464613] PTP clock support registered
[    2.468518] EDAC MC: Ver: 3.0.0
[    2.471999] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
[    2.480466] jesd204: found 0 devices and 0 topologies
[    2.485132] FPGA manager framework
[    2.488612] Advanced Linux Sound Architecture Driver Initialized.
[    2.494928] Bluetooth: Core ver 2.22
[    2.498091] NET: Registered protocol family 31
[    2.502492] Bluetooth: HCI device and connection manager initialized
[    2.508808] Bluetooth: HCI socket layer initialized
[    2.513653] Bluetooth: L2CAP socket layer initialized
[    2.518673] Bluetooth: SCO socket layer initialized
[    2.523872] clocksource: Switched to clocksource arch_sys_counter
[    2.529678] VFS: Disk quotas dquot_6.6.0
[    2.533503] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.544253] NET: Registered protocol family 2
[    2.544959] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    2.553136] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    2.561167] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    2.568625] TCP: Hash tables configured (established 32768 bind 32768)
[    2.574840] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    2.582156] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    2.588806] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    2.595986] NET: Registered protocol family 1
[    2.600454] RPC: Registered named UNIX socket transport module.
[    2.606041] RPC: Registered udp transport module.
[    2.610707] RPC: Registered tcp transport module.
[    2.615376] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.622378] PCI: CLS 0 bytes, default 64
[    2.626088] hw perfevents: no interrupt-affinity property for /pmu, guessing.
[    2.632933] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    2.641359] Initialise system trusted keyrings
[    2.644963] workingset: timestamp_bits=62 max_order=20 bucket_order=0
[    2.651858] NFS: Registering the id_resolver key type
[    2.656300] Key type id_resolver registered
[    2.660441] Key type id_legacy registered
[    2.664433] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    2.671099] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    2.678270] fuse: init (API version 7.32)
[    2.718059] NET: Registered protocol family 38
[    2.718101] xor: measuring software checksum speed
[    2.725790]    8regs           :  2363 MB/sec
[    2.729459]    32regs          :  2799 MB/sec
[    2.734402]    arm64_neon      :  2380 MB/sec
[    2.734593] xor: using function: 32regs (2799 MB/sec)
[    2.739618] Key type asymmetric registered
[    2.743679] Asymmetric key parser 'x509' registered
[    2.748540] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    2.755877] io scheduler mq-deadline registered
[    2.760373] io scheduler kyber registered
[    2.789851] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.795065] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    2.800871] brd: module loaded
[    2.805097] loop: module loaded
[    2.805419] Registered mathworks_ip class
[    2.808927] libphy: Fixed MDIO Bus: probed
[    2.811789] tun: Universal TUN/TAP device driver, 1.6
[    2.815916] CAN device driver interface
[    2.820560] usbcore: registered new interface driver asix
[    2.825036] usbcore: registered new interface driver ax88179_178a
[    2.831070] usbcore: registered new interface driver cdc_ether
[    2.836862] usbcore: registered new interface driver net1080
[    2.842482] usbcore: registered new interface driver cdc_subset
[    2.848365] usbcore: registered new interface driver zaurus
[    2.853907] usbcore: registered new interface driver cdc_ncm
[    2.860431] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.865997] ehci-pci: EHCI PCI platform driver
[    2.870842] usbcore: registered new interface driver uas
[    2.875711] usbcore: registered new interface driver usb-storage
[    2.881702] usbcore: registered new interface driver usbserial_generic
[    2.888149] usbserial: USB Serial support registered for generic
[    2.894123] usbcore: registered new interface driver ftdi_sio
[    2.899824] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.907102] usbcore: registered new interface driver upd78f0730
[    2.912972] usbserial: USB Serial support registered for upd78f0730
[    2.920755] rtc_zynqmp ffa60000.rtc: registered as rtc0
[    2.924397] rtc_zynqmp ffa60000.rtc: setting system clock to 2023-08-08T15:14:09 UTC (1691507649)
[    2.933263] i2c /dev entries driver
[    2.938668] usbcore: registered new interface driver uvcvideo
[    2.942372] USB Video Class driver (1.1.1)
[    2.948033] Bluetooth: HCI UART driver ver 2.3
[    2.950844] Bluetooth: HCI UART protocol H4 registered
[    2.955955] Bluetooth: HCI UART protocol BCSP registered
[    2.961242] Bluetooth: HCI UART protocol LL registered
[    2.966332] Bluetooth: HCI UART protocol ATH3K registered
[    2.971708] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    2.977960] Bluetooth: HCI UART protocol Intel registered
[    2.983298] Bluetooth: HCI UART protocol QCA registered
[    2.988498] usbcore: registered new interface driver bcm203x
[    2.994121] usbcore: registered new interface driver bpa10x
[    2.999658] usbcore: registered new interface driver bfusb
[    3.005105] usbcore: registered new interface driver btusb
[    3.010567] usbcore: registered new interface driver ath3k
[    3.016055] EDAC MC: ECC not enabled
[    3.019678] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
[    3.032022] sdhci: Secure Digital Host Controller Interface driver
[    3.037782] sdhci: Copyright(c) Pierre Ossman
[    3.042104] sdhci-pltfm: SDHCI platform and OF driver helper
[    3.048202] ledtrig-cpu: registered to indicate activity on CPUs
[    3.053709] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    3.060137] zynqmp_firmware_probe Platform Management API v1.1
[    3.065896] zynqmp_firmware_probe Trustzone version v1.0
[    3.104569] zynqmp-pinctrl firmware:zynqmp-firmware:pinctrl: zynqmp pinctrl initialized
[    3.152205] zynqmp-aes firmware:zynqmp-firmware:zynqmp-aes: will run requests pump with realtime priority
[    3.167957] alg: No test for xilinx-keccak-384 (zynqmp-keccak-384)
[    3.168671] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
[    3.174174] usbcore: registered new interface driver usbhid
[    3.179564] usbhid: USB HID core driver
[    3.190693] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[    3.192031] usbcore: registered new interface driver snd-usb-audio
[    3.199494] pktgen: Packet Generator for packet performance testing. Version: 2.75
[    3.205652] Initializing XFRM netlink socket
[    3.209477] NET: Registered protocol family 10
[    3.214255] Segment Routing with IPv6
[    3.217588] NET: Registered protocol family 17
[    3.221867] NET: Registered protocol family 15
[    3.226355] can: controller area network core
[    3.230617] NET: Registered protocol family 29
[    3.235006] can: raw protocol
[    3.237942] can: broadcast manager protocol
[    3.242097] can: netlink gateway - max_hops=1
[    3.246493] Bluetooth: RFCOMM TTY layer initialized
[    3.251270] Bluetooth: RFCOMM socket layer initialized
[    3.256376] Bluetooth: RFCOMM ver 1.11
[    3.260091] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.265361] Bluetooth: BNEP filters: protocol multicast
[    3.270554] Bluetooth: BNEP socket layer initialized
[    3.275481] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    3.281365] Bluetooth: HIDP socket layer initialized
[    3.286428] 9pnet: Installing 9P2000 support
[    3.290543] NET: Registered protocol family 36
[    3.294962] Key type dns_resolver registered
[    3.299404] registered taskstats version 1
[    3.303254] Loading compiled-in X.509 certificates
[    3.308382] Btrfs loaded, crc32c=crc32c-generic
[    3.321092] ff000000.serial: ttyPS0 at MMIO 0xff000000 (irq = 48, base_baud = 6249999) is a xuartps
[    3.330111] printk: console [ttyPS0] enabled
[    3.334405] printk: bootconsole [cdns0] disabled
[    3.344068] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 49, base_baud = 6249999) is a xuartps
[    3.357248] of-fpga-region fpga-full: FPGA Region probed
[    3.364233] nwl-pcie fd0e0000.pcie: host bridge /axi/pcie@fd0e0000 ranges:
[    3.371123] nwl-pcie fd0e0000.pcie:      MEM 0x00e0000000..0x00efffffff -> 0x00e0000000
[    3.379131] nwl-pcie fd0e0000.pcie:      MEM 0x0600000000..0x07ffffffff -> 0x0600000000
[    3.387196] nwl-pcie fd0e0000.pcie: Link is DOWN
[    3.391965] nwl-pcie fd0e0000.pcie: PCI host bridge to bus 0000:00
[    3.398142] pci_bus 0000:00: root bus resource [bus 00-ff]
[    3.403623] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff]
[    3.410494] pci_bus 0000:00: root bus resource [mem 0x600000000-0x7ffffffff pref]
[    3.418002] pci 0000:00:00.0: [10ee:d021] type 01 class 0x060400
[    3.424064] pci 0000:00:00.0: PME# supported from D0 D1 D2 D3hot
[    3.434977] pci 0000:00:00.0: PCI bridge to [bus 01-0c]
[    3.440558] xilinx-zynqmp-dma fd500000.dma: ZynqMP DMA driver Probe success
[    3.447731] xilinx-zynqmp-dma fd510000.dma: ZynqMP DMA driver Probe success
[    3.454905] xilinx-zynqmp-dma fd520000.dma: ZynqMP DMA driver Probe success
[    3.462075] xilinx-zynqmp-dma fd530000.dma: ZynqMP DMA driver Probe success
[    3.469239] xilinx-zynqmp-dma fd540000.dma: ZynqMP DMA driver Probe success
[    3.476412] xilinx-zynqmp-dma fd550000.dma: ZynqMP DMA driver Probe success
[    3.483579] xilinx-zynqmp-dma fd560000.dma: ZynqMP DMA driver Probe success
[    3.490752] xilinx-zynqmp-dma fd570000.dma: ZynqMP DMA driver Probe success
[    3.498137] xilinx-zynqmp-dpdma fd4c0000.dma-controller: Xilinx DPDMA engine is probed
[    3.506703] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[    3.514247] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[    3.522743] ad9361 spi1.0: ad9361_probe : enter (ad9361)
[    3.528984] ad9361 spi1.0: No GPIOs defined for ext band ctrl
[    3.544256] random: fast init done
[    3.759934] ad9361 spi1.0: ad9361_probe : AD936x Rev 0 successfully initialized
[    3.768032] spi-nor spi0.0: SPI-NOR-UniqueID 0ad90400010c0021009e90a65fa7
[    3.774821] spi-nor spi0.0: found mt25qu512a, expected m25p80
[    3.781222] spi-nor spi0.0: trying to lock already unlocked area
[    3.787221] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
[    3.792382] 4 fixed-partitions partitions found on MTD device spi0.0
[    3.798727] Creating 4 MTD partitions on "spi0.0":
[    3.803511] 0x000000000000-0x000000100000 : "qspi-fsbl-uboot"
[    3.810018] 0x000000100000-0x000000600000 : "qspi-linux"
[    3.815975] 0x000000600000-0x000000620000 : "qspi-device-tree"
[    3.822461] 0x000000620000-0x000000c00000 : "qspi-rootfs"
[    3.831020] macb ff0e0000.ethernet: Not enabling partial store and forward
[    3.838547] libphy: MACB_mii_bus: probed
[    3.843511] macb ff0e0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0e0000 irq 30 (00:0a:35:07:25:93)
[    3.853744] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[    3.860319] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[    3.866853] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[    3.873400] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[    3.883455] pca953x 0-0020: supply vcc not found, using dummy regulator
[    3.890142] pca953x 0-0020: using no AI
[    3.894627] gpio-496 (sel0): hogged as output/low
[    3.899531] gpio-497 (sel1): hogged as output/high
[    3.904516] gpio-498 (sel2): hogged as output/high
[    3.909507] gpio-499 (sel3): hogged as output/high
[    3.914685] pca953x 0-0021: supply vcc not found, using dummy regulator
[    3.921352] pca953x 0-0021: using no AI
[    3.927144] ina2xx 2-0040: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.934182] ina2xx 2-0041: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.941216] ina2xx 2-0042: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.948249] ina2xx 2-0043: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.955276] ina2xx 2-0044: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.962309] ina2xx 2-0045: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.969346] ina2xx 2-0046: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.976434] ina2xx 2-0047: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.983466] ina2xx 2-004a: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.990497] ina2xx 2-004b: power monitor ina226 (Rshunt = 5000 uOhm)
[    3.996898] i2c i2c-0: Added multiplexed i2c bus 2
[    4.002488] ina2xx 3-0040: power monitor ina226 (Rshunt = 2000 uOhm)
[    4.009523] ina2xx 3-0041: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.016554] ina2xx 3-0042: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.023585] ina2xx 3-0043: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.030616] ina2xx 3-0044: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.037652] ina2xx 3-0045: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.044685] ina2xx 3-0046: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.051716] ina2xx 3-0047: power monitor ina226 (Rshunt = 5000 uOhm)
[    4.058114] i2c i2c-0: Added multiplexed i2c bus 3
[    4.113765] i2c i2c-0: Added multiplexed i2c bus 4
[    4.118707] i2c i2c-0: Added multiplexed i2c bus 5
[    4.123495] pca954x 0-0075: registered 4 multiplexed busses for I2C mux pca9544
[    4.130845] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 32
[    4.138672] at24 6-0054: supply vcc not found, using dummy regulator
[    4.145556] at24 6-0054: 1024 byte 24c08 EEPROM, writable, 1 bytes/write
[    4.152302] i2c i2c-1: Added multiplexed i2c bus 6
[    4.158749] si5341 7-0036: Chip: 5341 Grade: 1 Rev: 1
[    4.196795] i2c i2c-1: Added multiplexed i2c bus 7
[    4.204482] si570 8-005d: registered, current frequency 300000000 Hz
[    4.210882] i2c i2c-1: Added multiplexed i2c bus 8
[    4.230686] si570 9-005d: registered, current frequency 148500000 Hz
[    4.237088] i2c i2c-1: Added multiplexed i2c bus 9
[    4.242144] si5324 10-0069: si5328 probed
[    4.308315] si5324 10-0069: si5328 probe successful
[    4.313240] i2c i2c-1: Added multiplexed i2c bus 10
[    4.318267] i2c i2c-1: Added multiplexed i2c bus 11
[    4.323291] i2c i2c-1: Added multiplexed i2c bus 12
[    4.328314] i2c i2c-1: Added multiplexed i2c bus 13
[    4.333186] pca954x 1-0074: registered 8 multiplexed busses for I2C switch pca9548
[    4.342382] at24 14-0050: supply vcc not found, using dummy regulator
[    4.349171] at24 14-0050: 256 byte 24c02 EEPROM, writable, 1 bytes/write
[    4.355920] i2c i2c-1: Added multiplexed i2c bus 14
[    4.360956] i2c i2c-1: Added multiplexed i2c bus 15
[    4.365990] i2c i2c-1: Added multiplexed i2c bus 16
[    4.371025] i2c i2c-1: Added multiplexed i2c bus 17
[    4.376057] i2c i2c-1: Added multiplexed i2c bus 18
[    4.381094] i2c i2c-1: Added multiplexed i2c bus 19
[    4.386129] i2c i2c-1: Added multiplexed i2c bus 20
[    4.391161] i2c i2c-1: Added multiplexed i2c bus 21
[    4.396038] pca954x 1-0075: registered 8 multiplexed busses for I2C switch pca9548
[    4.403647] cdns-i2c ff030000.i2c: 400 kHz mmio ff030000 irq 33
[    4.413751] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
[    4.457805] mmc0: SDHCI controller on ff170000.mmc [ff170000.mmc] using ADMA 64-bit
[    4.501143] mmc0: new high speed SDHC card at address 59b4
[    4.506969] mmcblk0: mmc0:59b4 SN32G 29.7 GiB 
[    4.513196]  mmcblk0: p1 p2 p3
[    5.245781] cf_axi_adc 99020000.cf-ad9361-lpc: ADI AIM (10.01.b) at 0x99020000 mapped to 0x(____ptrval____), probed ADC AD9361 as MASTER
[    5.276349] cf_axi_dds 99024000.cf-ad9361-dds-core-lpc: Analog Devices CF_AXI_DDS_DDS MASTER (9.01.b) at 0x99024000 mapped to 0x(____ptrval____), probed DDS AD9361
[    5.292048] zynqmp-display fd4a0000.display: vtc bridge property not present
[    5.300259] zynqmp_clk_divider_set_rate() set divider failed for spi1_ref_div1, ret = -13
[    5.309939] xilinx-dp-snd-codec fd4a0000.display:zynqmp_dp_snd_codec0: Failed to get required clock freq
[    5.319437] xilinx-dp-snd-codec: probe of fd4a0000.display:zynqmp_dp_snd_codec0 failed with error -22
[    5.328993] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm0: Xilinx DisplayPort Sound PCM probed
[    5.337168] xilinx-dp-snd-pcm zynqmp_dp_snd_pcm1: Xilinx DisplayPort Sound PCM probed
[    5.345429] OF: graph: no port node found in /axi/display@fd4a0000
[    5.351827] xlnx-drm xlnx-drm.0: bound fd4a0000.display (ops 0xffffffc01103c4f8)
[    6.435887] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
[    6.443513] [drm] Initialized xlnx 1.0.0 20130509 for fd4a0000.display on minor 0
[    6.451005] zynqmp-display fd4a0000.display: ZynqMP DisplayPort Subsystem driver probed
[    6.459322] ahci-ceva fd0c0000.ahci: supply ahci not found, using dummy regulator
[    6.466863] ahci-ceva fd0c0000.ahci: supply phy not found, using dummy regulator
[    6.474318] ahci-ceva fd0c0000.ahci: supply target not found, using dummy regulator
[    6.482150] ahci-ceva fd0c0000.ahci: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl platform mode
[    6.491102] ahci-ceva fd0c0000.ahci: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst 
[    6.501648] scsi host0: ahci-ceva
[    6.505252] scsi host1: ahci-ceva
[    6.508685] ata1: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x100 irq 45
[    6.516594] ata2: SATA max UDMA/133 mmio [mem 0xfd0c0000-0xfd0c1fff] port 0x180 irq 45
[    6.525228] OF: graph: no port node found in /axi/phy@fd400000
[    6.541383] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    6.548705] of_cfs_init
[    6.551161] of_cfs_init: OK
[    6.554144] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.692488] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.699018] clk: Not disabling unused clocks
[    6.703556] ALSA device list:
[    6.706519]   No soundcards found.
[    6.710197] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.718805] cfg80211: failed to load regulatory.db
[    6.838075] ata2: SATA link down (SStatus 0 SControl 330)
[    6.843487] ata1: SATA link down (SStatus 0 SControl 330)
[    6.862505] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[    6.870623] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    6.884033] devtmpfs: mounted
[    6.887948] Freeing unused kernel memory: 2624K
[    6.892558] Run /sbin/init as init process
[    6.896649]   with arguments:
[    6.896651]     /sbin/init
[    6.896654]   with environment:
[    6.896656]     HOME=/
[    6.896658]     TERM=linux
[    7.450533] systemd[1]: systemd 247.3-7+rpi1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[    7.473808] systemd[1]: Detected architecture arm64.
[    7.504664] systemd[1]: Set hostname to <analog>.
[    7.527904] zynqmp-display fd4a0000.display: [drm] Cannot find any crtc or sizes
[    8.757387] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
[    8.993160] systemd[1]: Queued start job for default target Graphical Interface.
[    9.001783] random: systemd: uninitialized urandom read (16 bytes read)
[    9.008586] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    9.020935] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[    9.029998] systemd[1]: Created slice system-getty.slice.
[    9.051975] random: systemd: uninitialized urandom read (16 bytes read)
[    9.058962] systemd[1]: Created slice system-modprobe.slice.
[    9.079974] random: systemd: uninitialized urandom read (16 bytes read)
[    9.086918] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    9.108280] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    9.132165] systemd[1]: Created slice User and Session Slice.
[    9.152229] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    9.176173] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped.
[    9.188664] systemd[1]: Reached target Slices.
[    9.204052] systemd[1]: Reached target Swap.
[    9.220651] systemd[1]: Listening on Syslog Socket.
[    9.236289] systemd[1]: Listening on fsck to fsckd communication Socket.
[    9.260127] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    9.284620] systemd[1]: Listening on Journal Audit Socket.
[    9.304305] systemd[1]: Listening on Journal Socket (/dev/log).
[    9.328341] systemd[1]: Listening on Journal Socket.
[    9.351461] systemd[1]: Listening on udev Control Socket.
[    9.372298] systemd[1]: Listening on udev Kernel Socket.
[    9.393884] systemd[1]: Mounting Huge Pages File System...
[    9.409697] systemd[1]: Mounting POSIX Message Queue File System...
[    9.433517] systemd[1]: Mounting RPC Pipe File System...
[    9.449810] systemd[1]: Mounting Kernel Debug File System...
[    9.472425] systemd[1]: Condition check resulted in Kernel Trace File System being skipped.
[    9.481061] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped.
[    9.493567] systemd[1]: Starting Restore / save the current clock...
[    9.518970] systemd[1]: Starting Set the console keyboard layout...
[    9.556398] systemd[1]: Condition check resulted in Create list of static device nodes for the current kernel being skipped.
[    9.570020] systemd[1]: Starting Load Kernel Module configfs...
[    9.590129] systemd[1]: Starting Load Kernel Module drm...
[    9.614111] systemd[1]: Starting Load Kernel Module fuse...
[    9.638825] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    9.648118] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    9.659131] systemd[1]: Starting Journal Service...
[    9.680142] systemd[1]: Starting Load Kernel Modules...
[    9.701965] systemd[1]: Starting Remount Root and Kernel File Systems...
[    9.725947] systemd[1]: Starting Coldplug All udev Devices...
[    9.749771] systemd[1]: Mounted Huge Pages File System.
[    9.772496] systemd[1]: Mounted POSIX Message Queue File System.
[    9.800726] systemd[1]: Mounted RPC Pipe File System.
[    9.820477] systemd[1]: Mounted Kernel Debug File System.
[    9.844845] systemd[1]: Finished Restore / save the current clock.
[    9.868628] systemd[1]: Started Journal Service.
[   10.028553] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[   10.145306] systemd-journald[173]: Received client request to flush runtime journal.
[   11.120931] random: crng init done
[   11.120943] random: 7 urandom warning(s) missed due to ratelimiting
[   15.400734] macb ff0e0000.ethernet eth0: PHY [ff0e0000.ethernet-ffffffff:0c] driver [TI DP83867] (irq=POLL)
[   15.400746] macb ff0e0000.ethernet eth0: configuring for phy/rgmii-id link mode
[   15.401444] pps pps0: new PPS source ptp0
[   15.401555] macb ff0e0000.ethernet: gem-ptp-timer ptp clock registered.
[   15.786865] 8021q: 802.1Q VLAN Support v1.8
[   15.943898] Adding 102396k swap on /var/swap.  Priority:-2 extents:1 across:102396k SS
[   16.260573] file system registered
[   17.039593] read descriptors
[   17.039614] read strings
[   19.501536] macb ff0e0000.ethernet eth0: Link is Up - 1Gbps/Full - flow control tx
[   19.501570] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   34.838140] xilinx-vdma a0000000.dma: Xilinx AXI DMA Engine Driver Probed!!
[   34.838494] xilinx-vdma a0010000.dma: Xilinx AXI DMA Engine Driver Probed!!
[   40.053461] clk_unregister: unregistering prepared clock: spi1.0-tx_sampl_clk
[   40.053555] clk_unregister: unregistering prepared clock: spi1.0-clktf_clk
[   40.053644] clk_unregister: unregistering prepared clock: spi1.0-t1_clk
[   40.053733] clk_unregister: unregistering prepared clock: spi1.0-t2_clk
[   40.053816] clk_unregister: unregistering prepared clock: spi1.0-dac_clk
[   40.054237] clk_unregister: unregistering prepared clock: spi1.0-adc_clk
[   40.054322] clk_unregister: unregistering prepared clock: spi1.0-bbpll_clk
[   40.054407] clk_unregister: unregistering prepared clock: spi1.0-bb_refclk
[   40.055227] ad9361 spi1.0: ad9361_probe : enter (ad9361)
[   40.056109] ad9361 spi1.0: No GPIOs defined for ext band ctrl
[   40.285422] ad9361 spi1.0: ad9361_probe : AD936x Rev 0 successfully initialized
[   41.114819] cf_axi_adc 99020000.cf-ad9361-lpc: ADI AIM (10.01.b) at 0x99020000 mapped to 0x00000000681ba209, probed ADC AD9361 as MASTER
[   42.034568] tx_intf: version magic '5.10.0-98248-g1bbe32fa518-dirty SMP mod_unload aarch64' should be '5.10.0-98248-g1bbe32fa5182-dirty SMP mod_unload aarch64'
JiaoXianjun commented 10 months ago

Can you try these scripts (in the user_space directory).

On host PC:

prepare_kernel.sh

then build the driver again

Then:

transfer_kernel_image_module_to_board.sh

transfer_driver_userspace_to_board.sh

On board:

setup_once.sh

Then try to load the driver on board.