当前位置:   article > 正文

Android固件加载出错(load failed with error -2)_direct firmware load failed with error -2

direct firmware load failed with error -2

         在Android下移植一个降噪模块的驱动到另一个平台,加载固件的时候报错

  1. [ 137.659357] xxxxx 0-002c: Direct firmware load failed with error -2
  2. [ 137.665773] xxxxx 0-002c: Falling back to user helper

查看-2代表的错误码可知,-2代表找不到文件,可是文件的确在/system/lib/firmware下,为什么找不到呢?

include/uapi/asm-generic/errno-base.h

  1. #define EPERM 1 /* Operation not permitted */
  2. #define ENOENT 2 /* No such file or directory */
  3. #define ESRCH 3 /* No such process */
  4. #define EINTR 4 /* Interrupted system call */
  5. #define EIO 5 /* I/O error */
  6. #define ENXIO 6 /* No such device or address */
  7. #define E2BIG 7 /* Argument list too long */
  8. #define ENOEXEC 8 /* Exec format error */
  9. #define EBADF 9 /* Bad file number */
  10. #define ECHILD 10 /* No child processes */
  11. #define EAGAIN 11 /* Try again */
  12. #define ENOMEM 12 /* Out of memory */
  13. #define EACCES 13 /* Permission denied */
  14. #define EFAULT 14 /* Bad address */
  15. #define ENOTBLK 15 /* Block device required */
  16. #define EBUSY 16 /* Device or resource busy */
  17. #define EEXIST 17 /* File exists */
  18. #define EXDEV 18 /* Cross-device link */
  19. #define ENODEV 19 /* No such device */
  20. #define ENOTDIR 20 /* Not a directory */
  21. #define EISDIR 21 /* Is a directory */
  22. #define EINVAL 22 /* Invalid argument */
  23. #define ENFILE 23 /* File table overflow */
  24. #define EMFILE 24 /* Too many open files */
  25. #define ENOTTY 25 /* Not a typewriter */
  26. #define ETXTBSY 26 /* Text file busy */
  27. #define EFBIG 27 /* File too large */
  28. #define ENOSPC 28 /* No space left on device */
  29. #define ESPIPE 29 /* Illegal seek */
  30. #define EROFS 30 /* Read-only file system */
  31. #define EMLINK 31 /* Too many links */
  32. #define EPIPE 32 /* Broken pipe */
  33. #define EDOM 33 /* Math argument out of domain of func */
  34. #define ERANGE 34 /* Math result not representable */

找到driver/base/firmware_class.c文件,可以看到

  1. static char fw_path_para[256];
  2. static const char * const fw_path[] = {
  3. fw_path_para,
  4. "/lib/firmware/updates/" UTS_RELEASE,
  5. "/lib/firmware/updates",
  6. "/lib/firmware/" UTS_RELEASE,
  7. "/lib/firmware"
  8. };
  9. /*
  10. * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
  11. * from kernel command line because firmware_class is generally built in
  12. * kernel instead of module.
  13. */
  14. module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
  15. MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");

      原来是固件的位置不对,在Android的文件系统下,根目录下并没有lib文件夹啊,当然通过软链接的方式实现固件加载,在init.rc中将/system/lib/软链接(symlink)到/lib。当然,直接修改源码,想从什么路径进行加载都行啊。还有一个路径,fw_path_path就是读取内核命令行(/proc/cmdline)指定的固件路径,将firmware_class.path=$CUSTOMIZED_PATH'添加到内核命令行中就行。其他Android版本的内核固件路径可参考http://blog.csdn.net/mike8825/article/details/51841871

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/960215
推荐阅读
相关标签
  

闽ICP备14008679号