1 --- linux-2.6.17/include/asm-mips/bootinfo.h 2006-06-18 03:49:35.000000000 +0200
2 +++ linux-2.6.17-brcm63xx/include/asm-mips/bootinfo.h 2006-07-13 19:14:01.000000000 +0200
4 #define MACH_GROUP_TITAN 22 /* PMC-Sierra Titan */
5 #define MACH_TITAN_YOSEMITE 1 /* PMC-Sierra Yosemite */
8 + * Valid machtype for group BRCM
10 +#define MACH_GROUP_BRCM 23 /* Broadcom boards */
11 +#define MACH_BCM96338 0
12 +#define MACH_BCM96345 1
13 +#define MACH_BCM96348 2
15 #define CL_SIZE COMMAND_LINE_SIZE
17 const char *get_system_type(void);
18 --- linux-2.6.17/include/asm-mips/cpu.h 2006-06-18 03:49:35.000000000 +0200
19 +++ linux-2.6.17-brcm63xx/include/asm-mips/cpu.h 2006-07-13 19:15:17.000000000 +0200
22 #define PRID_IMP_SR71000 0x0400
24 +/* These are the PRID's for when 23:16 == PRID_COMP_BROADCOM
27 +#define PRID_IMP_BCM6338 0x9000
28 +#define PRID_IMP_BCM6345 0x8000
29 +#define PRID_IMP_BCM6348 0x9100
32 * Definitions for 7:0 on legacy processors
39 +#define CPU_BCM6338 65
40 +#define CPU_BCM6345 66
41 +#define CPU_BCM6348 67
46 --- linux-2.6.17/include/asm-mips/mach-generic/param.h 2006-06-18 03:49:35.000000000 +0200
47 +++ linux-2.6.17-brcm63xx/include/asm-mips/mach-generic/param.h 2006-07-13 19:17:26.000000000 +0200
49 #ifndef __ASM_MACH_GENERIC_PARAM_H
50 #define __ASM_MACH_GENERIC_PARAM_H
52 -#define HZ 1000 /* Internal kernel timer frequency */
53 +#define HZ 200 /* Internal kernel timer frequency */
55 #endif /* __ASM_MACH_GENERIC_PARAM_H */
56 --- linux-2.6.17/include/asm-mips/module.h 2006-06-18 03:49:35.000000000 +0200
57 +++ linux-2.6.17-brcm63xx/include/asm-mips/module.h 2006-07-13 19:18:34.000000000 +0200
59 #define MODULE_PROC_FAMILY "RM9000 "
60 #elif defined CONFIG_CPU_SB1
61 #define MODULE_PROC_FAMILY "SB1 "
62 +#elif defined CONFIG_CPU_BCM6338
63 +#define MODULE_PROC_FAMILY "BCM6338 "
64 +#elif defined CONFIG_CPU_BCM6345
65 +#define MODULE_PROC_FAMILY "BCM6345 "
66 +#elif defined CONFIG_CPU_BCM6348
67 +#define MODULE_PROC_FAMILY "BCM6348 "
69 #error MODULE_PROC_FAMILY undefined for your processor configuration