Lines Matching +full:simple +full:- +full:framebuffer
3 (see Documentation/DMA-API-HOWTO.txt). They continue
5 must not use them. --davidm 00/12/12 ]
10 The AHA-1542 is a bus-master device, and your patch makes the driver give the
16 so-called "bus address".
19 that is, normal RAM--see later about other details):
21 - CPU untranslated. This is the "physical" address. Physical address
24 - CPU translated address. This is the "virtual" address, and is
28 - bus address. This is the address of memory as seen by OTHER devices,
30 addresses, with each device seeing memory in some device-specific way, but
36 address, and things are very simple indeed. However, they are that simple
43 0-2 GB "real memory"
44 2 GB-3 GB "system IO" (inb/out and similar accesses on x86)
45 3 GB-4 GB "IO memory" (shared memory over the IO bus)
47 Now, that looks simple enough. However, when you look at the same thing from
146 - reading:
153 - remapping and writing:
155 * remap framebuffer PCI memory area at 0xFC000000,
157 * access only the 640k-1MB area, so anything else
168 - copying and clearing:
169 /* get the 6-byte Ethernet address at ISA address E000:0040 */
172 memcpy_toio(0xE1000, skb->data, skb->len);