cpuinfo.h (0cce284537fb42d9c28b9b31038ffc9b464555f5) | cpuinfo.h (23460839b983d5d8d47fe90f341599f66523dd81) |
---|---|
1/* 2 * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch> 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 15 unchanged lines hidden (view full) --- 24struct cpuinfo { 25 /* Core CPU configuration */ 26 char cpu_impl[12]; 27 u32 cpu_clock_freq; 28 bool mmu; 29 bool has_div; 30 bool has_mul; 31 bool has_mulx; | 1/* 2 * Copyright (C) 2011 Tobias Klauser <tklauser@distanz.ch> 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 15 unchanged lines hidden (view full) --- 24struct cpuinfo { 25 /* Core CPU configuration */ 26 char cpu_impl[12]; 27 u32 cpu_clock_freq; 28 bool mmu; 29 bool has_div; 30 bool has_mul; 31 bool has_mulx; |
32 bool has_bmx; |
|
32 33 /* CPU caches */ 34 u32 icache_line_size; 35 u32 icache_size; 36 u32 dcache_line_size; 37 u32 dcache_size; 38 39 /* TLB */ --- 18 unchanged lines hidden --- | 33 34 /* CPU caches */ 35 u32 icache_line_size; 36 u32 icache_size; 37 u32 dcache_line_size; 38 u32 dcache_size; 39 40 /* TLB */ --- 18 unchanged lines hidden --- |