android之ION内存管理器(2)--|android之ION内存管理器(2)-- cache
ION如何实现buffer共享的思路倒是很清晰的,但是深入代码研究,发现ION是依赖于DMA Mapping的,而DMA mapping模块对我而言还是挺复杂的,看这个模块遇到的第一个问题就是cache。既然是DMA mapping,直接将申请的buffer设置为non-cacheable不就行了?这样就可以保证CPU通过DMA读写缓冲区的一致性了。为什么还有Consistent DMA mappings 和 Streaming DMA mappings一说呢?下面先介绍一下Cache的概念。
Cache
Cache写机制:Write-through与Write-back[5]
Cache写机制分为write through和write back两种。
- Write-through- Write is done synchronously both to the cache and to the backing store.
- Write-back (or Write-behind) – Writing is done only to the cache. A modified cache block is written back to the store, just before it is replaced.
Write-through(直写模式)在数据更新时,同时写入缓存Cache和后端存储。此模式的优点是操作简单;缺点是因为数据修改需要同时写入存储,数据写入速度较慢。
Write-misses写缺失的处理方式 对于写操作,存在写入缓存缺失数据的情况,这时有两种处理方式:
- Write allocate (aka Fetch on write) – Datum at the missed-write location is loaded to cache, followed by a write-hit operation. In this approach, write misses are similar to read-misses.
- No-write allocate (aka Write-no-allocate, Write around) – Datum at the missed-write location is not loaded to cache, and is written directly to the backing store. In this approach, actually only system reads are being cached.
Write allocate方式将写入位置读入缓存,然后采用write-hit(缓存命中写入)操作。写缺失操作与读缺失操作类似。
无论是Write-through还是Write-back都可以使用写缺失的两种方式之一。只是通常Write-back采用Write allocate方式,而Write-through采用No-write allocate方式;因为多次写入同一缓存时,Write allocate配合Write-back可以提升性能;而对于Write-through则没有帮助。
Cache的两个函数
- Flush
把Cache内容写回Memory,当Cache为Write through,不需要Flush - Invalidate
把Cache内容直接丢掉不要。
当有DMA在使用memory的时候,一般要用到cache的处理。因为DMA在访问memory时是不经过cache的。比较典型的比如在Ethernet,wireless,USB等driver里,DMA会操作descriptors和packet buffers,Driver要做这些处理
- 如果driver使用descripter和packet buffer的地址都是cache的地址,那么
a).Driver在读descripter里一些状态,有没有收到包时,要对descripter当前结构里的内容做cache invalidate,收到packet后,也要对packet buffer做cache invalidate
b).Driver在写descripter里一些状态,要发送包时,要对descripter当前结构里的内容做cache flush,发送packet时,也要对packet buffer做cache flush
- 有些driver会对descripter使用uncache 地址,那么上面两种情况里invalidate/flush就不用做了。一般很少会对packet buffer也用uncache地址的,因为对packet内容的处理将会很频繁,使用uncache会很慢。而descripter一般由于结构比较小,如果也使用cache地址的话,做invalidate/flush的时间消耗可能会比uncache的还要多。
文章图片
[6] C B 位的具体含义
- 0 0 无cache,无写缓冲(strongly-ordered);任何对memory的读写都反映到总线上。对 memory 的操作过程中CPU需要等待。
- 0 1 无cache,有写缓冲(shareable device);读操作直接反映到总线上;写操作,CPU将数据写入到写缓冲后继续运行,由写缓冲进行写回操作。
- 1 0 有cache,写通模式(write-through);读操作首先考虑cache hit;写操作时直接将数据写入写缓冲,如果同时出现cache hit,那么也更新cache。
- 1 1 有cache,写回模式(write-back);读操作首先考虑cache hit;写操作也首先考虑cache hit。
- Write-through模式处理流程:
文章图片
Write-through模式处理流程
- 【android之ION内存管理器(2)--|android之ION内存管理器(2)-- cache】Write-back模式处理流程:
文章图片
Write-back模式处理流程
- https://wiki.linaro.org/BenjaminGaignard/ion
- http://lwn.net/Articles/480055/
- http://lwn.net/Articles/472984/
- 《linux设备驱动程序》第三版 JONATHAN CORBET
- http://witmax.cn/cache-writing-policies.html
- ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition DDI0406C
推荐阅读
- PMSJ寻平面设计师之现代(Hyundai)
- android第三方框架(五)ButterKnife
- 太平之莲
- 闲杂“细雨”
- 七年之痒之后
- 深入理解Go之generate
- 由浅入深理解AOP
- 期刊|期刊 | 国内核心期刊之(北大核心)
- 《魔法科高中的劣等生》第26卷(Invasion篇)发售
- 生活随笔|好天气下的意外之喜