• 设备树的引进与体验_使用设备树时的驱动编程


    目录

    1 驱动程序中的设备树机制

    2 写代码

    2.1 设备树文件

    2.2 led_drv.c

    2.3 ledtest.c

    2.4 Makefile

    3 代码优化改进

    3.1 设备树文件

    3.2 led_drv.c

    3.3 ledtest.c

    3.4 Makefile

    4 实验方式

    4.1 编译设备树文件jz2440.dts得到jz2440.dtb

    4.2 使用jz2440.dtb启动内核

    4.3 编译led_drv.c

    4.4 编译app ledtest 

    4.5 测试

    5 附录


    1 驱动程序中的设备树机制

    a. 使用"总线设备驱动模型"编写的驱动程序分为platform_device和platform_driver两部分
       platform_device : 指定硬件资源, 来自.c文件
       platform_driver : 根据与之匹配的platform_device获得硬件资源, 并分配/设置/注册file_operations
    b. 实际上platform_device也可以来自设备树文件.dts
       dts文件被编译为dtb文件, 
       dtb文件会传给内核, 
       内核会解析dtb文件, 构造出一系列的device_node结构体,
       device_node结构体会转换为platform_device结构体
       所以: 我们可以在dts文件中指定资源, 不再需要在.c文件中设置platform_device结构体
    c. "来自dts的platform_device结构体" 与 "我们写的platform_driver" 的匹配过程:
        "来自dts的platform_device结构体"里面有成员".dev.of_node", 它里面含有各种属性, 比如                compatible, reg, pin
        "我们写的platform_driver"里面有成员".driver.of_match_table", 它表示能支持哪些来自于dts的      platform_device 
        如果"of_node中的compatible" 跟 "of_match_table中的compatible" 一致, 就表示匹配成功, 则调      用 platform_driver中的probe函数;
        在probe函数中, 可以继续从of_node中获得各种属性来确定硬件资源

        dts  - device tree source  // 设备树源文件
        dtb  - device tree blob    // 设备树二进制文件, 由dts编译得来
        blob - binary large object

    2 写代码

    2.1 设备树文件

    1. // SPDX-License-Identifier: GPL-2.0
    2. /*
    3. * SAMSUNG SMDK2440 board device tree source
    4. *
    5. * Copyright (c) 2018 weidongshan@qq.com
    6. * dtc -I dtb -O dts -o jz2440.dts jz2440.dtb
    7. */
    8. #define S3C2410_GPA(_nr) ((0<<16) + (_nr))
    9. #define S3C2410_GPB(_nr) ((1<<16) + (_nr))
    10. #define S3C2410_GPC(_nr) ((2<<16) + (_nr))
    11. #define S3C2410_GPD(_nr) ((3<<16) + (_nr))
    12. #define S3C2410_GPE(_nr) ((4<<16) + (_nr))
    13. #define S3C2410_GPF(_nr) ((5<<16) + (_nr))
    14. #define S3C2410_GPG(_nr) ((6<<16) + (_nr))
    15. #define S3C2410_GPH(_nr) ((7<<16) + (_nr))
    16. #define S3C2410_GPJ(_nr) ((8<<16) + (_nr))
    17. #define S3C2410_GPK(_nr) ((9<<16) + (_nr))
    18. #define S3C2410_GPL(_nr) ((10<<16) + (_nr))
    19. #define S3C2410_GPM(_nr) ((11<<16) + (_nr))
    20. /dts-v1/;
    21. / {
    22. model = "SMDK24440";
    23. compatible = "samsung,smdk2440";
    24. #address-cells = <1>;
    25. #size-cells = <1>;
    26. memory@30000000 {
    27. device_type = "memory";
    28. reg = <0x30000000 0x4000000>;
    29. };
    30. /*
    31. cpus {
    32. cpu {
    33. compatible = "arm,arm926ej-s";
    34. };
    35. };
    36. */
    37. chosen {
    38. bootargs = "noinitrd root=/dev/mtdblock4 rw init=/linuxrc console=ttySAC0,115200";
    39. };
    40. led {
    41. compatible = "jz2440_led";
    42. reg = <S3C2410_GPF(5) 1>;
    43. };
    44. };

    设备树文件要放在内核的linux-4.19-rc3/arch/arm/boot/dts/ ,然后重新编译

    2.2 led_drv.c

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #define S3C2440_GPA(n) (0<<16 | n)
    14. #define S3C2440_GPB(n) (1<<16 | n)
    15. #define S3C2440_GPC(n) (2<<16 | n)
    16. #define S3C2440_GPD(n) (3<<16 | n)
    17. #define S3C2440_GPE(n) (4<<16 | n)
    18. #define S3C2440_GPF(n) (5<<16 | n)
    19. #define S3C2440_GPG(n) (6<<16 | n)
    20. #define S3C2440_GPH(n) (7<<16 | n)
    21. #define S3C2440_GPI(n) (8<<16 | n)
    22. #define S3C2440_GPJ(n) (9<<16 | n)
    23. static int led_pin;
    24. static volatile unsigned int *gpio_con;
    25. static volatile unsigned int *gpio_dat;
    26. /* 123. 分配/设置/注册file_operations
    27. * 4. 入口
    28. * 5. 出口
    29. */
    30. static int major;
    31. static struct class *led_class;
    32. static unsigned int gpio_base[] = {
    33. 0x56000000, /* GPACON */
    34. 0x56000010, /* GPBCON */
    35. 0x56000020, /* GPCCON */
    36. 0x56000030, /* GPDCON */
    37. 0x56000040, /* GPECON */
    38. 0x56000050, /* GPFCON */
    39. 0x56000060, /* GPGCON */
    40. 0x56000070, /* GPHCON */
    41. 0, /* GPICON */
    42. 0x560000D0, /* GPJCON */
    43. };
    44. static int led_open (struct inode *node, struct file *filp)
    45. {
    46. /* 把LED引脚配置为输出引脚 */
    47. /* GPF5 - 0x56000050 */
    48. int bank = led_pin >> 16;
    49. int base = gpio_base[bank];
    50. int pin = led_pin & 0xffff;
    51. gpio_con = ioremap(base, 8);
    52. if (gpio_con) {
    53. printk("ioremap(0x%x) = 0x%x\n", base, gpio_con);
    54. }
    55. else {
    56. return -EINVAL;
    57. }
    58. gpio_dat = gpio_con + 1;
    59. *gpio_con &= ~(3<<(pin * 2));
    60. *gpio_con |= (1<<(pin * 2));
    61. return 0;
    62. }
    63. static ssize_t led_write (struct file *filp, const char __user *buf, size_t size, loff_t *off)
    64. {
    65. /* 根据APP传入的值来设置LED引脚 */
    66. unsigned char val;
    67. int pin = led_pin & 0xffff;
    68. copy_from_user(&val, buf, 1);
    69. if (val)
    70. {
    71. /* 点灯 */
    72. *gpio_dat &= ~(1<
    73. }
    74. else
    75. {
    76. /* 灭灯 */
    77. *gpio_dat |= (1<
    78. }
    79. return 1; /* 已写入1个数据 */
    80. }
    81. static int led_release (struct inode *node, struct file *filp)
    82. {
    83. printk("iounmap(0x%x)\n", gpio_con);
    84. iounmap(gpio_con);
    85. return 0;
    86. }
    87. static struct file_operations myled_oprs = {
    88. .owner = THIS_MODULE,
    89. .open = led_open,
    90. .write = led_write,
    91. .release = led_release,
    92. };
    93. static int led_probe(struct platform_device *pdev)
    94. {
    95. struct resource *res;
    96. /* 根据platform_device的资源进行ioremap */
    97. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    98. led_pin = res->start;
    99. major = register_chrdev(0, "myled", &myled_oprs);
    100. led_class = class_create(THIS_MODULE, "myled");
    101. device_create(led_class, NULL, MKDEV(major, 0), NULL, "led"); /* /dev/led */
    102. return 0;
    103. }
    104. static int led_remove(struct platform_device *pdev)
    105. {
    106. unregister_chrdev(major, "myled");
    107. device_destroy(led_class, MKDEV(major, 0));
    108. class_destroy(led_class);
    109. return 0;
    110. }
    111. static const struct of_device_id of_match_leds[] = {
    112. { .compatible = "jz2440_led", .data = NULL },
    113. { /* sentinel */ }
    114. };
    115. struct platform_driver led_drv = {
    116. .probe = led_probe,
    117. .remove = led_remove,
    118. .driver = {
    119. .name = "myled",
    120. .of_match_table = of_match_leds, /* 能支持哪些来自于dts的platform_device */
    121. }
    122. };
    123. static int myled_init(void)
    124. {
    125. platform_driver_register(&led_drv);
    126. return 0;
    127. }
    128. static void myled_exit(void)
    129. {
    130. platform_driver_unregister(&led_drv);
    131. }
    132. module_init(myled_init);
    133. module_exit(myled_exit);
    134. MODULE_LICENSE("GPL");

    2.3 ledtest.c

    1. #include
    2. #include
    3. #include
    4. #include
    5. /* ledtest on
    6. * ledtest off
    7. */
    8. int main(int argc, char **argv)
    9. {
    10. int fd;
    11. unsigned char val = 1;
    12. fd = open("/dev/led", O_RDWR);
    13. if (fd < 0)
    14. {
    15. printf("can't open!\n");
    16. }
    17. if (argc != 2)
    18. {
    19. printf("Usage :\n");
    20. printf("%s \n", argv[0]);
    21. return 0;
    22. }
    23. if (strcmp(argv[1], "on") == 0)
    24. {
    25. val = 1;
    26. }
    27. else
    28. {
    29. val = 0;
    30. }
    31. write(fd, &val, 1);
    32. return 0;
    33. }

    2.4 Makefile

    1. KERN_DIR = /work/system/linux-4.19-rc3
    2. all:
    3. make -C $(KERN_DIR) M=`pwd` modules
    4. clean:
    5. make -C $(KERN_DIR) M=`pwd` modules clean
    6. rm -rf modules.order
    7. obj-m += led_drv.o

    3 代码优化改进

    3.1 设备树文件

    1. // SPDX-License-Identifier: GPL-2.0
    2. /*
    3. * SAMSUNG SMDK2440 board device tree source
    4. *
    5. * Copyright (c) 2018 weidongshan@qq.com
    6. * dtc -I dtb -O dts -o jz2440.dts jz2440.dtb
    7. */
    8. #define S3C2410_GPA(_nr) ((0<<16) + (_nr))
    9. #define S3C2410_GPB(_nr) ((1<<16) + (_nr))
    10. #define S3C2410_GPC(_nr) ((2<<16) + (_nr))
    11. #define S3C2410_GPD(_nr) ((3<<16) + (_nr))
    12. #define S3C2410_GPE(_nr) ((4<<16) + (_nr))
    13. #define S3C2410_GPF(_nr) ((5<<16) + (_nr))
    14. #define S3C2410_GPG(_nr) ((6<<16) + (_nr))
    15. #define S3C2410_GPH(_nr) ((7<<16) + (_nr))
    16. #define S3C2410_GPJ(_nr) ((8<<16) + (_nr))
    17. #define S3C2410_GPK(_nr) ((9<<16) + (_nr))
    18. #define S3C2410_GPL(_nr) ((10<<16) + (_nr))
    19. #define S3C2410_GPM(_nr) ((11<<16) + (_nr))
    20. /dts-v1/;
    21. / {
    22. model = "SMDK24440";
    23. compatible = "samsung,smdk2440";
    24. #address-cells = <1>;
    25. #size-cells = <1>;
    26. memory@30000000 {
    27. device_type = "memory";
    28. reg = <0x30000000 0x4000000>;
    29. };
    30. /*
    31. cpus {
    32. cpu {
    33. compatible = "arm,arm926ej-s";
    34. };
    35. };
    36. */
    37. chosen {
    38. bootargs = "noinitrd root=/dev/mtdblock4 rw init=/linuxrc console=ttySAC0,115200";
    39. };
    40. led {
    41. compatible = "jz2440_led";
    42. pin = <S3C2410_GPF(5)>;
    43. };
    44. };

    3.2 led_drv.c

    1. #include
    2. #include
    3. #include
    4. #include
    5. #include
    6. #include
    7. #include
    8. #include
    9. #include
    10. #include
    11. #include
    12. #include
    13. #define S3C2440_GPA(n) (0<<16 | n)
    14. #define S3C2440_GPB(n) (1<<16 | n)
    15. #define S3C2440_GPC(n) (2<<16 | n)
    16. #define S3C2440_GPD(n) (3<<16 | n)
    17. #define S3C2440_GPE(n) (4<<16 | n)
    18. #define S3C2440_GPF(n) (5<<16 | n)
    19. #define S3C2440_GPG(n) (6<<16 | n)
    20. #define S3C2440_GPH(n) (7<<16 | n)
    21. #define S3C2440_GPI(n) (8<<16 | n)
    22. #define S3C2440_GPJ(n) (9<<16 | n)
    23. static int led_pin;
    24. static volatile unsigned int *gpio_con;
    25. static volatile unsigned int *gpio_dat;
    26. /* 123. 分配/设置/注册file_operations
    27. * 4. 入口
    28. * 5. 出口
    29. */
    30. static int major;
    31. static struct class *led_class;
    32. static unsigned int gpio_base[] = {
    33. 0x56000000, /* GPACON */
    34. 0x56000010, /* GPBCON */
    35. 0x56000020, /* GPCCON */
    36. 0x56000030, /* GPDCON */
    37. 0x56000040, /* GPECON */
    38. 0x56000050, /* GPFCON */
    39. 0x56000060, /* GPGCON */
    40. 0x56000070, /* GPHCON */
    41. 0, /* GPICON */
    42. 0x560000D0, /* GPJCON */
    43. };
    44. static int led_open (struct inode *node, struct file *filp)
    45. {
    46. /* 把LED引脚配置为输出引脚 */
    47. /* GPF5 - 0x56000050 */
    48. int bank = led_pin >> 16;
    49. int base = gpio_base[bank];
    50. int pin = led_pin & 0xffff;
    51. gpio_con = ioremap(base, 8);
    52. if (gpio_con) {
    53. printk("ioremap(0x%x) = 0x%x\n", base, gpio_con);
    54. }
    55. else {
    56. return -EINVAL;
    57. }
    58. gpio_dat = gpio_con + 1;
    59. *gpio_con &= ~(3<<(pin * 2));
    60. *gpio_con |= (1<<(pin * 2));
    61. return 0;
    62. }
    63. static ssize_t led_write (struct file *filp, const char __user *buf, size_t size, loff_t *off)
    64. {
    65. /* 根据APP传入的值来设置LED引脚 */
    66. unsigned char val;
    67. int pin = led_pin & 0xffff;
    68. copy_from_user(&val, buf, 1);
    69. if (val)
    70. {
    71. /* 点灯 */
    72. *gpio_dat &= ~(1<
    73. }
    74. else
    75. {
    76. /* 灭灯 */
    77. *gpio_dat |= (1<
    78. }
    79. return 1; /* 已写入1个数据 */
    80. }
    81. static int led_release (struct inode *node, struct file *filp)
    82. {
    83. printk("iounmap(0x%x)\n", gpio_con);
    84. iounmap(gpio_con);
    85. return 0;
    86. }
    87. static struct file_operations myled_oprs = {
    88. .owner = THIS_MODULE,
    89. .open = led_open,
    90. .write = led_write,
    91. .release = led_release,
    92. };
    93. static int led_probe(struct platform_device *pdev)
    94. {
    95. struct resource *res;
    96. /* 根据platform_device的资源进行ioremap */
    97. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    98. if (res) {
    99. led_pin = res->start;
    100. }
    101. else {
    102. /* 获得pin属性 */
    103. of_property_read_s32(pdev->dev.of_node, "pin", &led_pin);
    104. }
    105. if (!led_pin)
    106. {
    107. printk("can not get pin for led\n");
    108. return -EINVAL;
    109. }
    110. major = register_chrdev(0, "myled", &myled_oprs);
    111. led_class = class_create(THIS_MODULE, "myled");
    112. device_create(led_class, NULL, MKDEV(major, 0), NULL, "led"); /* /dev/led */
    113. return 0;
    114. }
    115. static int led_remove(struct platform_device *pdev)
    116. {
    117. unregister_chrdev(major, "myled");
    118. device_destroy(led_class, MKDEV(major, 0));
    119. class_destroy(led_class);
    120. return 0;
    121. }
    122. static const struct of_device_id of_match_leds[] = {
    123. { .compatible = "jz2440_led", .data = NULL },
    124. { /* sentinel */ }
    125. };
    126. struct platform_driver led_drv = {
    127. .probe = led_probe,
    128. .remove = led_remove,
    129. .driver = {
    130. .name = "myled",
    131. .of_match_table = of_match_leds, /* 能支持哪些来自于dts的platform_device */
    132. }
    133. };
    134. static int myled_init(void)
    135. {
    136. platform_driver_register(&led_drv);
    137. return 0;
    138. }
    139. static void myled_exit(void)
    140. {
    141. platform_driver_unregister(&led_drv);
    142. }
    143. module_init(myled_init);
    144. module_exit(myled_exit);
    145. MODULE_LICENSE("GPL");

    3.3 ledtest.c

    1. #include
    2. #include
    3. #include
    4. #include
    5. /* ledtest on
    6. * ledtest off
    7. */
    8. int main(int argc, char **argv)
    9. {
    10. int fd;
    11. unsigned char val = 1;
    12. fd = open("/dev/led", O_RDWR);
    13. if (fd < 0)
    14. {
    15. printf("can't open!\n");
    16. }
    17. if (argc != 2)
    18. {
    19. printf("Usage :\n");
    20. printf("%s \n", argv[0]);
    21. return 0;
    22. }
    23. if (strcmp(argv[1], "on") == 0)
    24. {
    25. val = 1;
    26. }
    27. else
    28. {
    29. val = 0;
    30. }
    31. write(fd, &val, 1);
    32. return 0;
    33. }

    3.4 Makefile

    1. KERN_DIR = /work/system/linux-4.19-rc3
    2. all:
    3. make -C $(KERN_DIR) M=`pwd` modules
    4. clean:
    5. make -C $(KERN_DIR) M=`pwd` modules clean
    6. rm -rf modules.order
    7. obj-m += led_drv.o

    4 实验方式

    4.1 编译设备树文件jz2440.dts得到jz2440.dtb

       假设内核目录为: /work/system/linux-4.19-rc3/
       设置PATH使用新工具链:

       export  PATH=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/work/system/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi/bin

    把jz2440.dts复制到内核目录:   

    cp jz2440.dts  /work/system/linux-4.19-rc3/arch/arm/boot/dts

    编译设备树:

    1. cd /work/system/linux-4.19-rc3/
    2. make dtbs

    得到 /work/system/linux-4.19-rc3/arch/arm/boot/dts/jz2440.dtb,把dtb文件复制到nfs目录, 假设为 /work/nfs_root。

    4.2 使用jz2440.dtb启动内核

      启动板子进入u-boot :
      从NFS下载dtb: 

    nfs 32000000 192.168.1.123:/work/nfs_root/jz2440.dtb

    烧写到nand flash:

    nand erase device_tree; nand write.jffs2 32000000 device_tree

    重启单板

    然后在/sys/devices/platform目录下就可以看到

     然后再进入5005.led/of_node

     

     前面的00050005对应的是设备树文件里面的寄存器值,后面的00000001对应的是设备树文件中寄存器的大小也就是1.

    4.3 编译led_drv.c

      设置PATH使用新工具链:

    1. export PATH=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/work/system/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi/bin
    2. cd 001th/driver  或  cd 002th/driver
    3. make  // 得到led_drv.ko

    4.4 编译app ledtest 

    注意!注意!注意!注意!注意!注意!注意!注意!编译APP用的工具链不一样!!!!为什么编译驱动程序的工具链和编译app的工具链不一样,原因见后面附录5.
    设置PATH使用新工具链:

    1. export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/arm/4.3.2/bin
    2. arm-linux-gcc -o ledtest ledtest.c

    4.5 测试

    在单板上通过nfs得到led_drv.ko和ledtest,测试命令:

    1. insmod led_drv.ko
    2. ./ledtest on
    3. ./ledtest off

    5 附录

    1. 1. 编译器的选择:
    2. 一个完整的Linux系统包含三部分: u-boot, kernel, root filesystem.
    3. a. 对于u-boot:
    4. 我们仍然使用u-boot 1.1.6, 在这个版本上我们实现了很多功能: usb下载,菜单操作,网卡永远使能等, 不忍丢弃.
    5. b. 对于kernel:
    6. 我下载了目前(2018.09.19)最新的内核 (4.19)
    7. c. 对于root filesystem
    8. 中文名为"根文件系统", 它包含一些必须的APP, 一些动态库。
    9. 一般来说这些动态库是从工具链里的lib目录复制得到的,
    10. 当然也可以自己去编译glibc等库。
    11. 在编译u-boot和kernel时, 我们可以使用新的工具链,
    12. 只要这个工具链支持ARM9的指令集(armv4)就可以(这通常可以通过编译参数来指定使用特定的指令集).
    13. 工具链可以从某些网站上下载,并不需要自己去制作。
    14. 比如可以访问这个网站: https://releases.linaro.org/components/toolchain/binaries/4.9-2017.01/arm-linux-gnueabi/
    15. 下载: gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi.tar.xz
    16. 但是在制作根文件系统时, 实际上我们是编译各种APP,
    17. 这些APP要用到一些动态库, 为了方便一般直接使用工具链中lib目录里的库。
    18. 新版工具链的lib库一般是支持新的芯片,比如cortex A7,A8,A9,并不支持ARM9。
    19. 所以在制作根文件系统、编译APP时我们还得使用比较老的工具链: arm-linux-gcc-4.3.2.tar.bz2
    20. 2. 通过设置PATH环境变量来选择使用某个工具链:
    21. 2.1 安装工具链:
    22. 这非常简单, 解压即可:
    23. sudo tar xjf arm-linux-gcc-4.3.2.tar.bz2 -C / (解压到根目录, /usr/local/arm/4.3.2/bin/下就是工具链)
    24. tar xJf gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi.tar.xz (解压到当前目录, 假设/work/system/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi/bin下就是工具链)
    25. 注意: "/work/system" 请自行替换为你的实际目录
    26. 2.2 设置环境变量使用某个工具链:
    27. a. 要使用arm-linux-gcc 4.3.2, 执行如下命令:
    28. export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/local/arm/4.3.2/bin
    29. 然后就可以执行 arm-linux-gcc -v 观看到版本号了
    30. b. 要使用arm-linux-gnueabi-gcc 4.9.4, 执行如下命令:
    31. export PATH=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/work/system/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi/bin
    32. 然后就可以执行 arm-linux-gnueabi-gcc -v 观看到版本号了
    33. 2. u-boot的编译:
    34. a. 首先设置环境变量使用要使用arm-linux-gnueabi-gcc 4.3.2
    35. b.
    36. 把源文件u-boot-1.1.6.tar.bz2、补丁文件u-boot-1.1.6_device_tree_for_jz2440.patch放在同一个目录,
    37. 执行如下命令:
    38. tar xjf u-boot-1.1.6.tar.bz2 // 解压
    39. cd u-boot-1.1.6
    40. patch -p1 < ../u-boot-1.1.6_device_tree_for_jz2440.patch // 打补丁
    41. make 100ask24x0_config // 配置
    42. make // 编译, 可以得到u-boot.bin
    43. 3. kernel的编译:
    44. a. 首先设置环境变量使用要使用arm-linux-gnueabi-gcc 4.3.2
    45. b.
    46. 把源文件linux-4.19-rc3.tar.gz、补丁文件linux-4.19-rc3_device_tree_for_jz2440.patch放在同一个目录,
    47. 执行如下命令:
    48. tar xzf linux-4.19-rc3.tar.gz // 解压
    49. cd linux-4.19-rc3
    50. patch -p1 < ../linux-4.19-rc3_device_tree_for_jz2440.patch // 打补丁
    51. cp config_ok .config // 配置
    52. make uImage // 编译, 可以得到arch/arm/boot/uImage
    53. make dtbs // 编译, 可以得到arch/arm/boot/dts/jz2440.dtb
    54. 注意:
    55. a. 如果提示"mkimage not found", 先编译u-boot, 把tools/mkimage复制到/bin目录
    56. b. 如果提示"openssl/bio.h: No such file or directory"
    57. 先确保你的ubuntu可以上网, 然后执行如下命令:
    58. sudo apt-get update
    59. sudo apt-get install libssl-dev
    60. 4. 制作root filesystem :
    61. 可以直接使用映象文件: fs_mini_mdev_new.yaffs2
    62. 如果想自己制作,请参考视频:
    63. 从www.100ask.net下载页面打开百度网盘,
    64. 打开如下目录:
    65. 100ask分享的所有文件
    66. 009_UBOOT移植_LINUX移植_驱动移植(免费)
    67. 毕业班第3课_移植3.4.2内核
    68. 毕业班第3课第2节_移植3.4.2内核之修改分区及制作根文件系统.WMV
    69. 5. 烧写
    70. a. 使用EOP烧写u-boot.bin到JZ2440的nor flash或nand flash
    71. b. 启动u-boot, 在串口工具中输入相应菜单命令, 使用dnw_100ask.exe发送对应文件
    72. 菜单 要发送的文件
    73. [k] Download Linux kernel uImage uImage
    74. [t] Download device tree file(.dtb) jz2440.dtb
    75. [y] Download root_yaffs image fs_mini_mdev_new.yaffs2
    76. 烧写完毕即可重启进入板上LINUX系统。

  • 相关阅读:
    申请CNAS软件测试资质,如何选择测试工具最具性价比?
    当我们在谈论构造函数注入的时候我们在谈论什么
    C++之STL前序
    坑惨啦!!!——符号冲突案例分析
    Vue3.3指北(一)
    制作游戏demo的心得
    Nginx可用参数
    Windows上搭建一个网站(基本生产环境)
    【无标题】【Koltin Flow(三)】Flow操作符之中间操作符(二)
    rush learn note
  • 原文地址:https://blog.csdn.net/u013171226/article/details/126708917