summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx
Commit message (Collapse)AuthorAgeFilesLines
* [kernel] update to 2.6.26.3 and 2.6.25.16juhosg2008-08-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12371 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] update to 2.6.25.15 and 2.6.26.2juhosg2008-08-071-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] update to 2.6.25.12juhosg2008-07-261-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11933 3c298f89-4303-0410-b956-a3cf2f4a3e73
* update targets to 2.6.25.10kaloz2008-07-051-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11667 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade to 2.6.25.9kaloz2008-06-261-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11584 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] upgrade to 2.6.25.7, and refresh patchesjuhosg2008-06-1712-142/+86
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11523 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade to 2.6.25.6kaloz2008-06-111-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11435 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add bcm3350 cpuidflorian2008-06-051-7/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11364 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] revert kernel version to 2.6.25.4juhosg2008-05-271-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11273 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] refresh kernel patchesjuhosg2008-05-1914-242/+223
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11201 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] upgrade to latest kernel versions (2.6.25.4; 2.6.24.7; 2.6.23.17; ↵juhosg2008-05-181-1/+1
| | | | | | 2.6.22.19) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11184 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm96345: correct some 6345 specific stuffnbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11183 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: fix cfe detectionnbd2008-05-181-0/+46
| | | | | | | | | The CFE detection failed to account for zero termination. Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11182 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: add new timer codenbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11181 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: remove obsolete timer codenbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11180 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: fix uart isrnbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11179 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: rewrite irq handling codenbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11178 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: add missing trailing zero to load addressnbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11177 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: flashmap supportnbd2008-05-181-0/+82
| | | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11176 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: serial port supportnbd2008-05-181-0/+23
| | | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11175 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: board supportnbd2008-05-181-0/+182
| | | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11174 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: add 2.6.25 configuration filenbd2008-05-181-0/+317
| | | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11173 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: use the 2.6.25.1 kernelnbd2008-05-181-1/+1
| | | | | | | Signed-off-by: Axel Gembe <ago@bastart.eu.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11172 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: image generation using image taggernbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11171 3c298f89-4303-0410-b956-a3cf2f4a3e73
* bcm963xx: fix load address / kernel entrynbd2008-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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11169 3c298f89-4303-0410-b956-a3cf2f4a3e73
* enable proper PCI & USB support detection at config-time by disabling ↵nico2008-05-092-2/+2
| | | | | | CONFIG_PCI & CONFIG_USB entries in generic/config and enabling them on targets where appropriate git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11097 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade to 2.6.24.5kaloz2008-04-281-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10959 3c298f89-4303-0410-b956-a3cf2f4a3e73
* properly disable CONFIG_CRYPTO_HWnico2008-04-271-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10952 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Delete config-default file and resync kernel configuration for brcm63xxflorian2008-04-112-293/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10790 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm63xx image generation cleanups (#3169)florian2008-04-011-0/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10703 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Upgrade brcm63xx to 2.6.24florian2008-02-1314-459/+483
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10455 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] resync kernel configjuhosg2008-02-111-34/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10444 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade & standardize kernel versionskaloz2008-02-111-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10443 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix initramfsnbd2008-01-011-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10080 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make the image filenames a bit shorternbd2007-11-101-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9533 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move crypto support to a seperate crypto.mk file, split modules into ↵nico2007-09-231-23/+0
| | | | | | multiple packages and adjust dependencies, sync crypto options in kconfigs. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8980 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing 2.6 conntrack/nat helpers, add 2.6 conntrack/nat helper for RTSP ↵nico2007-09-221-15/+0
| | | | | | (closes: #2297, thanks to aorlinsk), sync 2.4 / 2.6 kconfigs. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8955 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up jffs2 config optionsnbd2007-09-191-3/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8848 3c298f89-4303-0410-b956-a3cf2f4a3e73
* adapt profiles for subtarget changesnbd2007-09-081-3/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8695 3c298f89-4303-0410-b956-a3cf2f4a3e73
* major target cleanup. it is now possible to have subtargets that can ↵nbd2007-09-082-4/+3
| | | | | | override many target settings, including arch - merge adm5120, adm5120eb. target profiles still need to be adapted for subtargets git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8694 3c298f89-4303-0410-b956-a3cf2f4a3e73
* strip the kernel version suffix from target directories, except for brcm-2.4 ↵nbd2007-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. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73