summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx
Commit message (Collapse)AuthorAgeFilesLines
* update to 2.6.26.3 and 2.6.25.16Gabor Juhos2008-08-221-1/+1
| | | | SVN-Revision: 12371
* update to 2.6.25.15 and 2.6.26.2Gabor Juhos2008-08-071-1/+1
| | | | SVN-Revision: 12242
* update to 2.6.25.12Gabor Juhos2008-07-261-1/+1
| | | | SVN-Revision: 11933
* update targets to 2.6.25.10Imre Kaloz2008-07-051-1/+1
| | | | SVN-Revision: 11667
* upgrade to 2.6.25.9Imre Kaloz2008-06-261-1/+1
| | | | SVN-Revision: 11584
* upgrade to 2.6.25.7, and refresh patchesGabor Juhos2008-06-1712-142/+86
| | | | SVN-Revision: 11523
* upgrade to 2.6.25.6Imre Kaloz2008-06-111-1/+1
| | | | SVN-Revision: 11435
* Add bcm3350 cpuidFlorian Fainelli2008-06-051-7/+14
| | | | SVN-Revision: 11364
* revert kernel version to 2.6.25.4Gabor Juhos2008-05-271-1/+1
| | | | SVN-Revision: 11273
* refresh kernel patchesGabor Juhos2008-05-1914-242/+223
| | | | SVN-Revision: 11201
* upgrade to latest kernel versions (2.6.25.4; 2.6.24.7; 2.6.23.17; 2.6.22.19)Gabor Juhos2008-05-181-1/+1
| | | | SVN-Revision: 11184
* bcm96345: correct some 6345 specific stuffFelix Fietkau2008-05-181-0/+126
| | | | | | | | | | | | This fixes some problems with the 6345 support and adds a macro for CPU identification that is easier on the eyes. The first thing it does is to not initialize MPI on the 6345 as it does not have PCI. The second thing it does is to use a static value for the CPU frequency of the 6345 chip to provide an accurate timer. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11183
* bcm963xx: fix cfe detectionFelix Fietkau2008-05-181-0/+46
| | | | | | | | The CFE detection failed to account for zero termination. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11182
* bcm963xx: add new timer codeFelix Fietkau2008-05-181-0/+121
| | | | | | | | | This basically selects the new generic MIPS timer code for BCM963xx and simplifies the timer setup code. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11181
* bcm963xx: remove obsolete timer codeFelix Fietkau2008-05-181-0/+73
| | | | | | | | This removes some code that has been deprecated in kernels >= 2.6.24. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11180
* bcm963xx: fix uart isrFelix Fietkau2008-05-181-0/+36
| | | | | | | | | | The ISR ended up in an endless loop because the TX ISR never got used or masked. This patch basically makes the TX ISR mask the the TX interrupt when it encounters it, because it doesn't even use the TX interrupt. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11179
* bcm963xx: rewrite irq handling codeFelix Fietkau2008-05-182-0/+555
| | | | | | | | | This patch adds interrupt handling as on AR7. The old code was very messy and didn't work too well. It also removes the unused file int-handler.S. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11178
* bcm963xx: add missing trailing zero to load addressFelix Fietkau2008-05-181-0/+29
| | | | | | | | | The load address for BCM963xx is 0x80010000, not 0xf8001000 as in the current sources. I think this is just a typo, so this patch fixes it (tested on 96345). Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11177
* bcm963xx: flashmap supportFelix Fietkau2008-05-181-0/+82
| | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11176
* bcm963xx: serial port supportFelix Fietkau2008-05-181-0/+23
| | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11175
* bcm963xx: board supportFelix Fietkau2008-05-181-0/+182
| | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11174
* bcm963xx: add 2.6.25 configuration fileFelix Fietkau2008-05-181-0/+317
| | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11173
* bcm963xx: use the 2.6.25.1 kernelFelix Fietkau2008-05-181-1/+1
| | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11172
* bcm963xx: image generation using image taggerFelix Fietkau2008-05-181-0/+27
| | | | | | | | | | | | | | | This adds CFE tagged image generation in the BCM963xx target image Makefile. It has to generate its own LZMA compressed kernel because CFE is a LZMA nazi. It also seems that the Broadcom image tagger as well as CFE use AdvanceCOMP, which is based on a slightly older LZMA SDK. Anyways, some of the code is GPL, some of it is LGPL, so it might be that Broadcom owes some sources. Also, LZMA has a bug which causes it to generate different output when you are using stdin / stdout compared to plain files. I've just worked around the issue by using plain files. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11171
* bcm963xx: fix load address / kernel entryFelix Fietkau2008-05-182-3/+3
| | | | | | | | | | Current kernels have the same kernel entry as load address, so just set them like this. Also, the BCM963xx uses 0x80010000 as its load address, so use this too. Signed-off-by: Axel Gembe <ago@bastart.eu.org> SVN-Revision: 11169
* enable proper PCI & USB support detection at config-time by disabling ↵Nicolas Thill2008-05-092-2/+2
| | | | | | CONFIG_PCI & CONFIG_USB entries in generic/config and enabling them on targets where appropriate SVN-Revision: 11097
* upgrade to 2.6.24.5Imre Kaloz2008-04-281-1/+1
| | | | SVN-Revision: 10959
* properly disable CONFIG_CRYPTO_HWNicolas Thill2008-04-271-1/+0
| | | | SVN-Revision: 10952
* Delete config-default file and resync kernel configuration for brcm63xxFlorian Fainelli2008-04-112-293/+3
| | | | SVN-Revision: 10790
* brcm63xx image generation cleanups (#3169)Florian Fainelli2008-04-011-0/+5
| | | | SVN-Revision: 10703
* Upgrade brcm63xx to 2.6.24Florian Fainelli2008-02-1314-459/+483
| | | | SVN-Revision: 10455
* resync kernel configGabor Juhos2008-02-111-34/+11
| | | | SVN-Revision: 10444
* upgrade & standardize kernel versionsImre Kaloz2008-02-111-1/+1
| | | | SVN-Revision: 10443
* fix initramfsFelix Fietkau2008-01-011-1/+0
| | | | SVN-Revision: 10080
* make the image filenames a bit shorterFelix Fietkau2007-11-101-1/+1
| | | | SVN-Revision: 9533
* move crypto support to a seperate crypto.mk file, split modules into ↵Nicolas Thill2007-09-231-23/+0
| | | | | | multiple packages and adjust dependencies, sync crypto options in kconfigs. SVN-Revision: 8980
* add missing 2.6 conntrack/nat helpers, add 2.6 conntrack/nat helper for RTSP ↵Nicolas Thill2007-09-221-15/+0
| | | | | | (closes: #2297, thanks to aorlinsk), sync 2.4 / 2.6 kconfigs. SVN-Revision: 8955
* clean up jffs2 config optionsFelix Fietkau2007-09-191-3/+0
| | | | SVN-Revision: 8848
* adapt profiles for subtarget changesFelix Fietkau2007-09-081-3/+0
| | | | SVN-Revision: 8695
* major target cleanup. it is now possible to have subtargets that can ↵Felix Fietkau2007-09-082-4/+3
| | | | | | override many target settings, including arch - merge adm5120, adm5120eb. target profiles still need to be adapted for subtargets SVN-Revision: 8694
* strip the kernel version suffix from target directories, except for brcm-2.4 ↵Felix Fietkau2007-09-0653-0/+8620
(the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles. SVN-Revision: 8653