2abd433ae2c3d14f6a7dd3618b014f4ea721180b
[openwrt/svn-archive/archive.git] / package / ar7-atm / patches / 100-compile_fix.patch
1 diff -urN sangam_atm-07.01.00.10/cppi_cpaal5.c sangam-atm-0.3/cppi_cpaal5.c
2 --- sangam_atm-07.01.00.10/cppi_cpaal5.c 2005-04-08 14:22:04.000000000 +0200
3 +++ sangam-atm-0.3/cppi_cpaal5.c 2007-04-17 13:45:11.000000000 +0200
4 @@ -352,7 +352,7 @@
5 {
6 /* malloc failed, add this RCB to Needs Buffer List */
7 TempRcb->FragCount = 1; /*MJH+030417*/
8 - (HAL_RCB *)TempRcb->Eop = TempRcb; /* GSG +030430 */
9 + TempRcb->Eop = TempRcb; /* GSG +030430 */
10
11 if(HalDev->NeedsCount < MAX_NEEDS) /* +MJH 030410 */
12 { /* +MJH 030410 */
13 diff -urN sangam_atm-07.01.00.10/dsl_hal_api.c sangam-atm-0.3/dsl_hal_api.c
14 --- sangam_atm-07.01.00.10/dsl_hal_api.c 2006-10-26 16:46:54.000000000 +0200
15 +++ sangam-atm-0.3/dsl_hal_api.c 2007-04-19 01:12:40.000000000 +0200
16 @@ -229,15 +229,15 @@
17 * 10/4/06 JZ CQ10979: Request for TR-069 Support for RP7.1
18 * UR8_MERGE_END CQ10979*
19 ******************************************************************************/
20 -#include <dev_host_interface.h>
21 -#include <dsl_hal_register.h>
22 -#include <dsl_hal_support.h>
23 +#include "dev_host_interface.h"
24 +#include "dsl_hal_register.h"
25 +#include "dsl_hal_support.h"
26
27 #ifndef NO_ADV_STATS
28 -#include <dsl_hal_logtable.h>
29 +#include "dsl_hal_logtable.h"
30 #endif
31
32 -#include <dsl_hal_version.h>
33 +#include "dsl_hal_version.h"
34
35 static unsigned int hybrid_selected;
36 static unsigned int showtimeFlag = FALSE;
37 diff -urN sangam_atm-07.01.00.10/dsl_hal_support.c sangam-atm-0.3/dsl_hal_support.c
38 --- sangam_atm-07.01.00.10/dsl_hal_support.c 2006-08-11 21:17:38.000000000 +0200
39 +++ sangam-atm-0.3/dsl_hal_support.c 2007-04-19 01:13:30.000000000 +0200
40 @@ -140,9 +140,9 @@
41 * oamFeature are overriden
42 // UR8_MERGE_END CQ10774 Ram
43 *******************************************************************************/
44 -#include <dev_host_interface.h>
45 -#include <dsl_hal_register.h>
46 -#include <dsl_hal_support.h>
47 +#include "dev_host_interface.h"
48 +#include "dsl_hal_register.h"
49 +#include "dsl_hal_support.h"
50
51 #define NUM_READ_RETRIES 3
52 static unsigned int dslhal_support_adsl2ByteSwap32(unsigned int in32Bits);
53 diff -urN sangam_atm-07.01.00.10/dsl_hal_support.h sangam-atm-0.3/dsl_hal_support.h
54 --- sangam_atm-07.01.00.10/dsl_hal_support.h 2005-11-11 13:07:04.000000000 +0100
55 +++ sangam-atm-0.3/dsl_hal_support.h 2007-04-19 01:12:01.000000000 +0200
56 @@ -49,7 +49,7 @@
57 * 04Nov05 0.11.00 CPH Fixed T1413 mode got Zero DS/US rate when DSL_BIT_TMODE is set.
58 *******************************************************************************/
59
60 -#include <dsl_hal_api.h>
61 +#include "dsl_hal_api.h"
62
63 #define virtual2Physical(a) (((int)a)&~0xe0000000)
64 /* External Function Prototype Declarations */
65 diff -urN sangam_atm-07.01.00.10/Makefile sangam-atm-0.3/Makefile
66 --- sangam_atm-07.01.00.10/Makefile 2005-06-01 09:46:28.000000000 +0200
67 +++ sangam-atm-0.3/Makefile 2007-04-19 01:09:02.000000000 +0200
68 @@ -1,18 +1,9 @@
69 -# File: drivers/atm/ti_evm3/Makefile
70 #
71 -# Makefile for the Texas Instruments EVM3 ADSL/ATM driver.
72 +# Makefile for the TIATM device driver.
73 #
74 -#
75 -# Copyright (c) 2000 Texas Instruments Incorporated.
76 -# Jeff Harrell (jharrell@telogy.com)
77 -# Viren Balar (vbalar@ti.com)
78 -# Victor Wells (vwells@telogy.com)
79 -#
80 -include $(TOPDIR)/Rules.make
81 -
82 -
83 -
84 -
85 -
86 -
87
88 +CONFIG_SANGAM_ATM=m
89 +#EXTRA_CFLAGS += -DEL -I. -DPOST_SILICON -DCOMMON_NSP -DCONFIG_LED_MODULE -DDEREGISTER_LED -DNO_ACT
90 +EXTRA_CFLAGS += -DEL -I$(PWD) -DPOST_SILICON -DCOMMON_NSP -DNO_ACT -D__NO__VOICE_PATCH__ -DEL
91 +obj-$(CONFIG_SANGAM_ATM) := tiatm.o
92 +tiatm-objs += cpsar.o aal5sar.o tn7sar.o tn7atm.o tn7dsl.o dsl_hal_api.o dsl_hal_support.o
93 diff -urN sangam_atm-07.01.00.10/tn7atm.c sangam-atm-0.3/tn7atm.c
94 --- sangam_atm-07.01.00.10/tn7atm.c 2006-10-26 16:48:52.000000000 +0200
95 +++ sangam-atm-0.3/tn7atm.c 2007-04-18 15:34:05.000000000 +0200
96 @@ -58,7 +58,6 @@
97 * UR8_MERGE_END CQ10979*
98 *********************************************************************************************/
99
100 -#include <linux/config.h>
101 #include <linux/kernel.h>
102 #include <linux/module.h>
103 #include <linux/init.h>
104 @@ -67,7 +66,7 @@
105 #include <linux/spinlock.h>
106 #include <linux/smp_lock.h>
107 #include <asm/io.h>
108 -#include <asm/mips-boards/prom.h>
109 +#include <asm/ar7/ar7.h>
110 #include <linux/proc_fs.h>
111 #include <linux/string.h>
112 #include <linux/ctype.h>
113 @@ -79,6 +78,7 @@
114 #include "dsl_hal_register.h"
115
116 #ifdef MODULE
117 +MODULE_LICENSE("GPL");
118 MODULE_DESCRIPTION ("Tnetd73xx ATM Device Driver");
119 MODULE_AUTHOR ("Zhicheng Tang");
120 #endif
121 @@ -97,9 +97,9 @@
122
123 /*end of externs */
124
125 -#ifndef TI_STATIC_ALLOCATIONS
126 -#define TI_STATIC_ALLOCATIONS
127 -#endif
128 +//#ifndef TI_STATIC_ALLOCATIONS
129 +//#define TI_STATIC_ALLOCATIONS
130 +//#endif
131
132 #define tn7atm_kfree_skb(x) dev_kfree_skb(x)
133
134 @@ -111,7 +111,7 @@
135 /* prototypes */
136 static int tn7atm_set_can_support_adsl2 (int can);
137
138 -static int tn7atm_open (struct atm_vcc *vcc, short vpi, int vci);
139 +static int tn7atm_open (struct atm_vcc *vcc);
140
141 static void tn7atm_close (struct atm_vcc *vcc);
142
143 @@ -254,13 +254,12 @@
144 getsockopt: NULL,
145 setsockopt: NULL,
146 send: tn7atm_send,
147 - sg_send: NULL,
148 phy_put: NULL,
149 phy_get: NULL,
150 change_qos: tn7atm_change_qos,
151 };
152
153 -const char drv_proc_root_folder[] = "avalanche/";
154 +const char drv_proc_root_folder[] = "avalanche";
155 static struct proc_dir_entry *root_proc_dir_entry = NULL;
156 #define DRV_PROC_MODE 0644
157 static int proc_root_already_exists = TRUE;
158 @@ -549,56 +548,6 @@
159
160 /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
161 *
162 - * Function: int tn7atm_walk_vccs(struct atm_dev *dev, short *vcc, int *vci)
163 - *
164 - * Description: retrieve VPI/VCI for connection
165 - *
166 - *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
167 -static int tn7atm_walk_vccs (struct atm_vcc *vcc, short *vpi, int *vci)
168 -{
169 - struct atm_vcc *walk;
170 -
171 - /*
172 - * find a free VPI
173 - */
174 - if (*vpi == ATM_VPI_ANY)
175 - {
176 -
177 - for (*vpi = 0, walk = vcc->dev->vccs; walk; walk = walk->next)
178 - {
179 -
180 - if ((walk->vci == *vci) && (walk->vpi == *vpi))
181 - {
182 - (*vpi)++;
183 - walk = vcc->dev->vccs;
184 - }
185 - }
186 - }
187 -
188 - /*
189 - * find a free VCI
190 - */
191 - if (*vci == ATM_VCI_ANY)
192 - {
193 -
194 - for (*vci = ATM_NOT_RSV_VCI, walk = vcc->dev->vccs; walk;
195 - walk = walk->next)
196 - {
197 -
198 - if ((walk->vpi = *vpi) && (walk->vci == *vci))
199 - {
200 - *vci = walk->vci + 1;
201 - walk = vcc->dev->vccs;
202 - }
203 - }
204 - }
205 -
206 - return 0;
207 -}
208 -
209 -
210 -/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
211 - *
212 * Function: int tn7atm_sar_irq(void)
213 *
214 * Description: tnetd73xx SAR interrupt.
215 @@ -694,8 +643,8 @@
216 {
217 def_sar_inter_pace = os_atoi (ptr);
218 }
219 - avalanche_request_pacing (priv->sar_irq, ATM_SAR_INT_PACING_BLOCK_NUM,
220 - def_sar_inter_pace);
221 +/* avalanche_request_pacing (priv->sar_irq, ATM_SAR_INT_PACING_BLOCK_NUM,
222 + def_sar_inter_pace);*/
223
224 /*
225 * Reigster Receive interrupt A
226 @@ -865,11 +814,15 @@
227 #define ATM_VBR_RT 5
228 #endif
229
230 -int tn7atm_open (struct atm_vcc *vcc, short vpi, int vci)
231 +int tn7atm_open (struct atm_vcc *vcc)
232 {
233 tn7atm_activate_vc_parm_t tn7atm_activate_vc_parm;
234 int rc;
235 //int flags;
236 + tn7atm_activate_vc_parm.pcr = 0x20000;
237 + tn7atm_activate_vc_parm.scr = 0x20000;
238 + tn7atm_activate_vc_parm.mbs = 0x20000;
239 + tn7atm_activate_vc_parm.cdvt = 10000;
240
241 dgprintf(1, "tn7atm_open()\n");
242
243 @@ -881,24 +834,18 @@
244 return -1;
245 }
246
247 - MOD_INC_USE_COUNT;
248 -
249 - /* find a free VPI/VCI */
250 - tn7atm_walk_vccs(vcc, &vpi, &vci);
251 -
252 - vcc->vpi = vpi;
253 - vcc->vci = vci;
254 +// MOD_INC_USE_COUNT;
255
256 - if ((vci == ATM_VCI_UNSPEC) || (vpi == ATM_VCI_UNSPEC))
257 + if ((vcc->vci == ATM_VCI_UNSPEC) || (vcc->vpi == ATM_VCI_UNSPEC))
258 {
259 - MOD_DEC_USE_COUNT;
260 +// MOD_DEC_USE_COUNT;
261 return -EBUSY;
262 }
263
264 - tn7atm_activate_vc_parm.vpi = vpi;
265 - tn7atm_activate_vc_parm.vci = vci;
266 + tn7atm_activate_vc_parm.vpi = vcc->vpi;
267 + tn7atm_activate_vc_parm.vci = vcc->vci;
268
269 - if ((vpi == CLEAR_EOC_VPI) && (vci == CLEAR_EOC_VCI))
270 + if ((vcc->vpi == CLEAR_EOC_VPI) && (vcc->vci == CLEAR_EOC_VCI))
271 {
272 /* always use (max_dma_chan+1) for clear eoc */
273 tn7atm_activate_vc_parm.chan = EOC_DMA_CHAN;
274 @@ -906,7 +853,7 @@
275 /* check to see whether clear eoc is opened or not */
276 if (tn7atm_activate_vc_parm.priv->lut[tn7atm_activate_vc_parm.chan].inuse)
277 {
278 - MOD_DEC_USE_COUNT;
279 +// MOD_DEC_USE_COUNT;
280 printk("tn7atm_open: Clear EOC channel (dmachan=%d) already in use.\n", tn7atm_activate_vc_parm.chan);
281 return -EBUSY;
282 }
283 @@ -915,7 +862,7 @@
284 if (rc)
285 {
286 printk("tn7atm_open: failed to setup clear_eoc\n");
287 - MOD_DEC_USE_COUNT;
288 +// MOD_DEC_USE_COUNT;
289 return -EBUSY;
290 }
291 tn7atm_set_lut(tn7atm_activate_vc_parm.priv,vcc, tn7atm_activate_vc_parm.chan);
292 @@ -924,17 +871,17 @@
293 }
294 else /* PVC channel setup */
295 {
296 - if ((vpi==REMOTE_MGMT_VPI) && (vci==REMOTE_MGMT_VCI))
297 + if ((vcc->vpi==REMOTE_MGMT_VPI) && (vcc->vci==REMOTE_MGMT_VCI))
298 {
299 tn7atm_activate_vc_parm.chan = 14; /* always use chan 14 for MII PVC-base romote mgmt */
300 }
301 else
302 {
303 - rc = tn7atm_lut_find(vpi, vci);
304 + rc = tn7atm_lut_find(vcc->vpi, vcc->vci);
305 /* check to see whether PVC is opened or not */
306 if(ATM_NO_DMA_CHAN != rc)
307 {
308 - MOD_DEC_USE_COUNT;
309 +// MOD_DEC_USE_COUNT;
310 printk("PVC already opened. dmachan = %d\n", rc);
311 return -EBUSY;
312 }
313 @@ -966,6 +913,7 @@
314 tn7atm_activate_vc_parm.priority = 2;
315 break;
316
317 +#if 0
318 case ATM_VBR: /* Variable Bit Rate-Non RealTime*/
319 tn7atm_activate_vc_parm.qos = 1;
320 tn7atm_activate_vc_parm.priority = 1;
321 @@ -987,6 +935,7 @@
322 tn7atm_activate_vc_parm.mbs = vcc->qos.txtp.max_pcr;
323 tn7atm_activate_vc_parm.cdvt = vcc->qos.txtp.max_cdv;
324 break;
325 +#endif
326
327 default:
328 tn7atm_activate_vc_parm.qos = 2;
329 @@ -1014,7 +963,7 @@
330 if (rc < 0)
331 {
332 printk("failed to activate hw channel\n");
333 - MOD_DEC_USE_COUNT;
334 +// MOD_DEC_USE_COUNT;
335 tn7atm_lut_clear(vcc, tn7atm_activate_vc_parm.chan);
336 //spin_unlock_irqrestore(&chan_init_lock, flags);
337 return -EBUSY;
338 @@ -1104,7 +1053,7 @@
339 tn7atm_lut_clear (vcc, dmachan);
340 //spin_unlock_irqrestore (&closeLock, closeFlag);
341
342 - MOD_DEC_USE_COUNT;
343 +// MOD_DEC_USE_COUNT;
344
345 dgprintf (1, "Leave tn7atm_close\n");
346 }
347 @@ -1518,8 +1467,7 @@
348 * firewall is on */
349
350 dgprintf (3, "pushing the skb...\n");
351 -
352 - skb->stamp = vcc->timestamp = xtime;
353 + __net_timestamp(skb);
354
355 xdump ((unsigned char *) skb->data, skb->len, 5);
356
357 @@ -1715,8 +1667,7 @@
358
359 kfree (dev->dev_data);
360
361 - // atm_dev_deregister (dev);
362 - shutdown_atm_dev (dev);
363 + atm_dev_deregister (dev);
364
365 /*
366 * remove proc entries
367 @@ -1875,9 +1826,6 @@
368 /*
369 * Set up proc entry for atm stats
370 */
371 - if (tn7atm_xlate_proc_name
372 - (drv_proc_root_folder, &root_proc_dir_entry, &residual))
373 - {
374 printk ("Creating new root folder %s in the proc for the driver stats \n",
375 drv_proc_root_folder);
376 root_proc_dir_entry = proc_mkdir (drv_proc_root_folder, NULL);
377 @@ -1887,7 +1835,6 @@
378 return -ENOMEM;
379 }
380 proc_root_already_exists = FALSE;
381 - }
382
383 /*
384 * AV: Clean-up. Moved all the definitions to the data structure.
385 @@ -2469,7 +2416,5 @@
386 return count;
387 }
388
389 -#ifdef MODULE
390 module_init (tn7atm_detect);
391 module_exit (tn7atm_exit);
392 -#endif /* MODULE */
393 diff -urN sangam_atm-07.01.00.10/tn7atm.h sangam-atm-0.3/tn7atm.h
394 --- sangam_atm-07.01.00.10/tn7atm.h 2006-04-05 11:33:06.000000000 +0200
395 +++ sangam-atm-0.3/tn7atm.h 2007-04-18 03:45:08.000000000 +0200
396 @@ -19,7 +19,8 @@
397 //#include "mips_support.h"
398 #include <linux/list.h>
399
400 -#include <linux/config.h>
401 +#define MIPS_EXCEPTION_OFFSET 8
402 +#define LNXINTNUM(x)((x) + MIPS_EXCEPTION_OFFSET)
403
404 #ifdef CONFIG_MODVERSIONS
405 #include <linux/modversions.h>
406 diff -urN sangam_atm-07.01.00.10/tn7dsl.c sangam-atm-0.3/tn7dsl.c
407 --- sangam_atm-07.01.00.10/tn7dsl.c 2006-10-26 16:48:44.000000000 +0200
408 +++ sangam-atm-0.3/tn7dsl.c 2007-04-18 15:45:58.000000000 +0200
409 @@ -88,7 +88,6 @@
410 * 10/4/06 JZ CQ10979: Request for TR-069 Support for RP7.1
411 * UR8_MERGE_END CQ10979*
412 *********************************************************************************************/
413 -#include <linux/config.h>
414 #include <linux/kernel.h>
415 #include <linux/module.h>
416 #include <linux/init.h>
417 @@ -97,7 +96,7 @@
418 #include <linux/spinlock.h>
419 #include <linux/smp_lock.h>
420 #include <asm/io.h>
421 -#include <asm/mips-boards/prom.h>
422 +#include <asm/ar7/ar7.h>
423 #include <linux/proc_fs.h>
424 #include <linux/string.h>
425 #include <linux/ctype.h>
426 @@ -105,6 +104,8 @@
427 #include <linux/timer.h>
428 #include <linux/vmalloc.h>
429 #include <linux/file.h>
430 +#include <linux/firmware.h>
431 +
432 /* Modules specific header files */
433 #include "tn7atm.h"
434 #include "tn7api.h"
435 @@ -312,6 +313,14 @@
436 static int tn7dsl_proc_snr_print (char *buf, int count, int *eof, int data);
437 /* end of internal functions */
438
439 +int avalanche_request_intr_pacing(int irq_nr, unsigned int blk_num,
440 + unsigned int pace_value)
441 +{
442 + printk("avalanche_request_pacing(%d, %u, %u); // not implemented\n", irq_nr, blk_num, pace_value);
443 + return 0;
444 +}
445 +
446 +
447 int os_atoi(const char *pStr)
448 {
449 int MulNeg = (*pStr == '-' ? -1 : 1);
450 @@ -348,39 +357,6 @@
451 #endif
452 }
453
454 -int strcmp(const char *s1, const char *s2)
455 -{
456 -
457 - int size = strlen(s1);
458 -
459 - return(strncmp(s1, s2, size));
460 -}
461 -
462 -int strncmp(const char *s1, const char *s2, size_t size)
463 -{
464 - int i = 0;
465 - int max_size = (int)size;
466 -
467 - while((s1[i] != 0) && i < max_size)
468 - {
469 - if(s2[i] == 0)
470 - {
471 - return -1;
472 - }
473 - if(s1[i] != s2[i])
474 - {
475 - return 1;
476 - }
477 - i++;
478 - }
479 - if(s2[i] != 0)
480 - {
481 - return 1;
482 - }
483 -
484 - return 0;
485 -}
486 -
487 // * UR8_MERGE_START CQ10640 Jack Zhang
488 int tn7dsl_dump_dsp_memory(char *input_str) //cph99
489 {
490 @@ -430,101 +406,72 @@
491 return CpuFrequency;
492 }
493
494 -int shim_osLoadFWImage(unsigned char *ptr)
495 +static void avsar_release(struct device *dev)
496 {
497 - unsigned int bytesRead;
498 - mm_segment_t oldfs;
499 - static struct file *filp;
500 - unsigned int imageLength=0x5ffff;
501 -
502 -
503 - dgprintf(4, "tn7dsl_read_dsp()\n");
504 -
505 - dgprintf(4,"open file %s\n", DSP_FIRMWARE_PATH);
506 -
507 - filp=filp_open(DSP_FIRMWARE_PATH,00,O_RDONLY);
508 - if(filp ==NULL)
509 - {
510 - printk("Failed: Could not open DSP binary file\n");
511 - return -1;
512 - }
513 -
514 - if (filp->f_dentry != NULL)
515 - {
516 - if (filp->f_dentry->d_inode != NULL)
517 - {
518 - printk ("DSP binary filesize = %d bytes\n",
519 - (int) filp->f_dentry->d_inode->i_size);
520 - imageLength = (unsigned int)filp->f_dentry->d_inode->i_size + 0x200;
521 - }
522 - }
523 -
524 - if (filp->f_op->read==NULL)
525 - return -1; /* File(system) doesn't allow reads */
526 -
527 - /*
528 - * Disable parameter checking
529 - */
530 - oldfs = get_fs();
531 - set_fs(KERNEL_DS);
532 -
533 - /*
534 - * Now read bytes from postion "StartPos"
535 - */
536 - filp->f_pos = 0;
537 -
538 - bytesRead = filp->f_op->read(filp,ptr,imageLength,&filp->f_pos);
539 -
540 - dgprintf(4,"file length = %d\n", bytesRead);
541 -
542 - set_fs(oldfs);
543 -
544 - /*
545 - * Close the file
546 - */
547 - fput(filp);
548 -
549 - return bytesRead;
550 + printk(KERN_DEBUG "avsar firmware released\n");
551 }
552
553 +static struct device avsar = {
554 + .bus_id = "vlynq",
555 + .release = avsar_release,
556 +};
557
558 -unsigned int shim_read_overlay_page (void *ptr, unsigned int secOffset,
559 - unsigned int secLength)
560 +int shim_osLoadFWImage(unsigned char *ptr)
561 {
562 - unsigned int bytesRead;
563 - mm_segment_t oldfs;
564 - struct file *filp;
565 -
566 - dgprintf(4,"shim_read_overlay_page\n");
567 - //dgprintf(4,"sec offset=%d, sec length =%d\n", secOffset, secLength);
568 -
569 - filp=filp_open(DSP_FIRMWARE_PATH,00,O_RDONLY);
570 - if(filp ==NULL)
571 - {
572 - printk("Failed: Could not open DSP binary file\n");
573 - return -1;
574 - }
575 -
576 - if (filp->f_op->read==NULL)
577 - return -1; /* File(system) doesn't allow reads */
578 -
579 - /*
580 - * Now read bytes from postion "StartPos"
581 - */
582 -
583 - if(filp->f_op->llseek)
584 - filp->f_op->llseek(filp,secOffset, 0);
585 - oldfs = get_fs();
586 - set_fs(KERNEL_DS);
587 - filp->f_pos = secOffset;
588 - bytesRead = filp->f_op->read(filp,ptr,secLength,&filp->f_pos);
589 + const struct firmware *fw_entry;
590
591 - set_fs(oldfs);
592 - /*
593 - * Close the file
594 - */
595 - fput(filp);
596 - return bytesRead;
597 + printk("requesting firmware image \"ar0700xx.bin\"\n");
598 + if(device_register(&avsar) < 0) {
599 + printk(KERN_ERR
600 + "avsar: device_register fails\n");
601 + return -1;
602 + }
603 +
604 + if(request_firmware(&fw_entry, "ar0700xx.bin", &avsar)) {
605 + printk(KERN_ERR
606 + "avsar: Firmware not available\n");
607 + device_unregister(&avsar);
608 + return -1;
609 + }
610 + device_unregister(&avsar);
611 + if(fw_entry->size > 0x5ffff) {
612 + printk(KERN_ERR
613 + "avsar: Firmware too big (%d bytes)\n", fw_entry->size);
614 + release_firmware(fw_entry);
615 + return -1;
616 + }
617 + memcpy(ptr, fw_entry->data, fw_entry->size);
618 + release_firmware(fw_entry);
619 + return fw_entry->size;
620 +}
621 +
622 +unsigned int shim_read_overlay_page(void *ptr, unsigned int secOffset, unsigned int secLength)
623 +{
624 + const struct firmware *fw_entry;
625 +
626 + printk("requesting firmware image \"ar0700xx.bin\"\n");
627 + if(device_register(&avsar) < 0) {
628 + printk(KERN_ERR
629 + "avsar: device_register fails\n");
630 + return -1;
631 + }
632 +
633 + if(request_firmware(&fw_entry, "ar0700xx.bin", &avsar)) {
634 + printk(KERN_ERR
635 + "avsar: Firmware not available\n");
636 + device_unregister(&avsar);
637 + return -1;
638 + }
639 + device_unregister(&avsar);
640 + if(fw_entry->size > secLength) {
641 + printk(KERN_ERR
642 + "avsar: Firmware too big (%d bytes)\n", fw_entry->size);
643 + release_firmware(fw_entry);
644 + return -1;
645 + }
646 + memcpy(ptr + secOffset, fw_entry->data, secLength);
647 + release_firmware(fw_entry);
648 + return fw_entry->size;
649 }
650
651 int shim_osLoadDebugFWImage(unsigned char *ptr)
652 @@ -3367,7 +3314,7 @@
653 */
654 if(write)
655 {
656 - ret = proc_dostring(ctl, write, filp, buffer, lenp);
657 + ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
658
659 switch (ctl->ctl_name)
660 {
661 @@ -3453,7 +3400,7 @@
662 else
663 {
664 len += sprintf(info+len, mod_req);
665 - ret = proc_dostring(ctl, write, filp, buffer, lenp);
666 + ret = proc_dostring(ctl, write, filp, buffer, lenp, 0);
667 }
668 return ret;
669 }
670 diff -urN sangam_atm-07.01.00.10/tn7sar.c sangam-atm-0.3/tn7sar.c
671 --- sangam_atm-07.01.00.10/tn7sar.c 2006-07-27 10:34:42.000000000 +0200
672 +++ sangam-atm-0.3/tn7sar.c 2007-04-18 03:47:39.000000000 +0200
673 @@ -42,7 +42,6 @@
674 * UR8_MERGE_END CQ10700
675 *******************************************************************************/
676
677 -#include <linux/config.h>
678 #include <linux/kernel.h>
679 #include <linux/module.h>
680 #include <linux/init.h>
681 @@ -51,7 +50,7 @@
682 #include <linux/spinlock.h>
683 #include <linux/smp_lock.h>
684 #include <asm/io.h>
685 -#include <asm/mips-boards/prom.h>
686 +#include <asm/ar7/ar7.h>
687 #include <linux/proc_fs.h>
688 #include <linux/string.h>
689 #include <linux/ctype.h>
690
691 diff -ur atm.old/tn7dsl.c atm.dev/tn7dsl.c
692 --- atm.old/tn7dsl.c 2007-05-24 17:36:33.865636000 +0200
693 +++ atm.dev/tn7dsl.c 2007-05-24 17:41:32.094298496 +0200
694 @@ -3430,8 +3430,7 @@
695 if (initialized == 1)
696 return;
697
698 - dslmod_sysctl_header = register_sysctl_table(dslmod_root_table, 1);
699 - dslmod_root_table->child->de->owner = THIS_MODULE;
700 + dslmod_sysctl_header = register_sysctl_table(dslmod_root_table);
701
702 /*
703 * set the defaults