From dae76937031f667c60f77ba377c2d2f88d2943ca Mon Sep 17 00:00:00 2001 From: jogo Date: Fri, 4 Jan 2013 14:47:43 +0000 Subject: bcm63xx: remove 3.3 support 3.6 is tested enough to be considered stable. Signed-off-by: Jonas Gorski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35009 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...-MIPS-BCM63XX-add-support-for-ipsec-clock.patch | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch (limited to 'target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch') diff --git a/target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch b/target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch deleted file mode 100644 index 6fffc1925..000000000 --- a/target/linux/brcm63xx/patches-3.3/018-MIPS-BCM63XX-add-support-for-ipsec-clock.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 0fec0136456ce214ea4df6b8ff3b3728befc816a Mon Sep 17 00:00:00 2001 -From: Florian Fainelli -Date: Tue, 31 Jan 2012 15:12:22 +0100 -Subject: [PATCH 3/6] MIPS: BCM63XX: add support for "ipsec" clock - -This module is only available on BCM6368 so far and does not require -resetting the block. - -Signed-off-by: Florian Fainelli -Cc: linux-mips@linux-mips.org -Cc: mpm@selenic.com -Cc: herbert@gondor.apana.org.au -Patchwork: https://patchwork.linux-mips.org/patch/3324/ -Signed-off-by: Ralf Baechle ---- - arch/mips/bcm63xx/clk.c | 14 ++++++++++++++ - 1 files changed, 14 insertions(+), 0 deletions(-) - ---- a/arch/mips/bcm63xx/clk.c -+++ b/arch/mips/bcm63xx/clk.c -@@ -224,6 +224,18 @@ static struct clk clk_xtm = { - }; - - /* -+ * IPsec clock -+ */ -+static void ipsec_set(struct clk *clk, int enable) -+{ -+ bcm_hwclock_set(CKCTL_6368_IPSEC_EN, enable); -+} -+ -+static struct clk clk_ipsec = { -+ .set = ipsec_set, -+}; -+ -+/* - * Internal peripheral clock - */ - static struct clk clk_periph = { -@@ -280,6 +292,8 @@ struct clk *clk_get(struct device *dev, - return &clk_periph; - if (BCMCPU_IS_6358() && !strcmp(id, "pcm")) - return &clk_pcm; -+ if (BCMCPU_IS_6368() && !strcmp(id, "ipsec")) -+ return &clk_ipsec; - return ERR_PTR(-ENOENT); - } - -- cgit v1.2.3