linux reserved memory用法

主要做项目时候,需要分配一块连续的大的物理内存。

1.kmalloc 不能分配那么大。

2.alloc_pages MAX_ORDER为11,也就是最大分配2的11次方的页。

reserverd memory在最开始时候分配好,这块内存不会再分配给kernel用。主要更改devicetree。

    memory {
        device_type = "memory";
        reg = <0x0 0x40000000>; //512m DDR
    };
	reserved-memory {
		#address-cells = <1>;
		#size-cells = <1>;
		ranges;
		test_reserved: test@1c000000 {
			compatible = "test,test-memory";
			reg = <0x1c000000 0x4000000>; //起始内存,内存大小
			no-map; //禁止操作系统做逻辑地址映射,开始我没加这句话,ioremap出错了。
		};
	};

验证代码:

        p_malloc = (char *)ioremap(0x1c000000,0x4000000); //做映射
        char *p_tmp = p_malloc;
        if(p_malloc == NULL) {
                printk("virtual add is error \n");
        }else {
                for(i = 0; i < 1024; i++) {
                        *p_tmp++ = i;
                }
                p_tmp = p_malloc;
                for(i = 0; i < 1024; i++) {
                        printk("%x \n",*p_tmp++);
                }
        }

 

你可能感兴趣的:(linux,驱动)