diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /sound/oss/iwmem.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'sound/oss/iwmem.h')
-rw-r--r-- | sound/oss/iwmem.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sound/oss/iwmem.h b/sound/oss/iwmem.h new file mode 100644 index 000000000000..84745fbcabcb --- /dev/null +++ b/sound/oss/iwmem.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * sound/iwmem.h | ||
3 | * | ||
4 | * DRAM size encoding table for AMD Interwave chip. | ||
5 | */ | ||
6 | /* | ||
7 | * Copyright (C) by Hannu Savolainen 1993-1997 | ||
8 | * | ||
9 | * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) | ||
10 | * Version 2 (June 1991). See the "COPYING" file distributed with this software | ||
11 | * for more info. | ||
12 | * | ||
13 | * Changes: | ||
14 | * Bartlomiej Zolnierkiewicz : added __initdata to mem_decode | ||
15 | */ | ||
16 | |||
17 | |||
18 | #define K 1024 | ||
19 | #define M (1024*K) | ||
20 | static int mem_decode[][4] __initdata = | ||
21 | { | ||
22 | /* Bank0 Bank1 Bank2 Bank3 Encoding bits */ | ||
23 | {256*K, 0, 0, 0}, /* 0 */ | ||
24 | {256*K, 256*K, 0, 0}, /* 1 */ | ||
25 | {256*K, 256*K, 256*K, 256*K}, /* 2 */ | ||
26 | {256*K, 1*M, 0, 0}, /* 3 */ | ||
27 | {256*K, 1*M, 1*M, 1*M}, /* 4 */ | ||
28 | {256*K, 256*K, 1*M, 0}, /* 5 */ | ||
29 | {256*K, 256*K, 1*M, 1*M}, /* 6 */ | ||
30 | {1*M, 0, 0, 0}, /* 7 */ | ||
31 | {1*M, 1*M, 0, 0}, /* 8 */ | ||
32 | {1*M, 1*M, 1*M, 1*M}, /* 9 */ | ||
33 | {4*M, 0, 0, 0}, /* 10 */ | ||
34 | {4*M, 4*M, 0, 0}, /* 11 */ | ||
35 | {4*M, 4*M, 4*M, 4*M} /* 12 */ | ||
36 | }; | ||