All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ralf Baechle <ralf@linux-mips.org>
To: Shane McDonald <mcdonald.shane@gmail.com>
Cc: linux-mips@linux-mips.org
Subject: Re: [MIPS] Resolve compile issues with msp71xx configuration
Date: Mon, 27 Apr 2009 15:09:52 +0200	[thread overview]
Message-ID: <20090427130952.GA30817@linux-mips.org> (raw)
In-Reply-To: <E1LyQQX-00047N-6E@localhost>

On Mon, Apr 27, 2009 at 06:59:17AM -0600, Shane McDonald wrote:

> There have been a number of compile problems with the msp71xx
> configuration ever since it was included in the linux-mips.org
> repository.  This patch resolves these problems:
>  - proper files are included when using a squashfs rootfs
>  - resetting the board no longer uses non-existent GPIO routines
>  - create the required plat_timer_setup function
> 
> This patch has been compile-tested against the current HEAD.
> 
> Signed-off-by: Shane McDonald <mcdonald.shane@gmail.com>
> ---
>  arch/mips/pmc-sierra/msp71xx/msp_prom.c  |    3 ++-
>  arch/mips/pmc-sierra/msp71xx/msp_setup.c |    8 ++------
>  arch/mips/pmc-sierra/msp71xx/msp_time.c  |    7 ++-----
>  3 files changed, 6 insertions(+), 12 deletions(-)
> 
> diff --git a/arch/mips/pmc-sierra/msp71xx/msp_prom.c b/arch/mips/pmc-sierra/msp71xx/msp_prom.c
> index e5bd548..1e2d984 100644
> --- a/arch/mips/pmc-sierra/msp71xx/msp_prom.c
> +++ b/arch/mips/pmc-sierra/msp71xx/msp_prom.c
> @@ -44,7 +44,8 @@
>  #include <linux/cramfs_fs.h>
>  #endif
>  #ifdef CONFIG_SQUASHFS
> -#include <linux/squashfs_fs.h>
> +#include <linux/magic.h>
> +#include "../../../../fs/squashfs/squashfs_fs.h"

No way.  You're reaching deep into the internals of squashfs for no good
reason.  The only use of anything from squashfs_fs.h is a cast and casting
to void * would work just as well.

>  #endif
>  
>  #include <asm/addrspace.h>
> diff --git a/arch/mips/pmc-sierra/msp71xx/msp_setup.c b/arch/mips/pmc-sierra/msp71xx/msp_setup.c
> index c936756..a54e85b 100644
> --- a/arch/mips/pmc-sierra/msp71xx/msp_setup.c
> +++ b/arch/mips/pmc-sierra/msp71xx/msp_setup.c
> @@ -21,7 +21,6 @@
>  
>  #if defined(CONFIG_PMC_MSP7120_GW)
>  #include <msp_regops.h>
> -#include <msp_gpio.h>
>  #define MSP_BOARD_RESET_GPIO	9
>  #endif
>  
> @@ -88,11 +87,8 @@ void msp7120_reset(void)
>  	 * as GPIO char driver may not be enabled and it would look up
>  	 * data inRAM!
>  	 */
> -	set_value_reg32(GPIO_CFG3_REG,
> -			basic_mode_mask(MSP_BOARD_RESET_GPIO),
> -			basic_mode(MSP_GPIO_OUTPUT, MSP_BOARD_RESET_GPIO));
> -	set_reg32(GPIO_DATA3_REG,
> -			basic_data_mask(MSP_BOARD_RESET_GPIO));
> +	set_value_reg32(GPIO_CFG3_REG, 0xf000, 0x8000);
> +	set_reg32(GPIO_DATA3_REG, 8);
>  
>  	/*
>  	 * In case GPIO9 doesn't reset the board (jumper configurable!)
> diff --git a/arch/mips/pmc-sierra/msp71xx/msp_time.c b/arch/mips/pmc-sierra/msp71xx/msp_time.c
> index 7cfeda5..cca64e1 100644
> --- a/arch/mips/pmc-sierra/msp71xx/msp_time.c
> +++ b/arch/mips/pmc-sierra/msp71xx/msp_time.c
> @@ -81,10 +81,7 @@ void __init plat_time_init(void)
>  	mips_hpt_frequency = cpu_rate/2;
>  }
>  
> -void __init plat_timer_setup(struct irqaction *irq)
> +unsigned int __init get_c0_compare_int(void)
>  {
> -#ifdef CONFIG_IRQ_MSP_CIC
> -	/* we are using the vpe0 counter for timer interrupts */
> -	setup_irq(MSP_INT_VPE0_TIMER, irq);
> -#endif
> +	return MSP_INT_VPE0_TIMER;
>  }

The rest seems ok.  Can you fix the issue above and send a new patch?

Thanks!

  Ralf

  reply	other threads:[~2009-04-27 13:09 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-27 12:59 [MIPS] Resolve compile issues with msp71xx configuration Shane McDonald
2009-04-27 13:09 ` Ralf Baechle [this message]
2009-04-27 13:18   ` Sergei Shtylyov
2009-04-28  5:36     ` Shane McDonald
2009-04-27 13:22   ` Geert Uytterhoeven
2009-04-28  6:21     ` Shane McDonald
2009-04-28  7:16       ` Geert Uytterhoeven
2009-04-28  9:21       ` Christoph Hellwig
2009-04-28 10:50         ` Kevin D. Kissell
2009-04-28  9:20     ` Christoph Hellwig
2009-04-28 14:48       ` Shane McDonald
2009-04-28 15:05         ` Florian Fainelli
2009-04-28 15:55           ` Shane McDonald
2009-04-28 15:09         ` Ralf Baechle
2009-04-27 13:27 ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090427130952.GA30817@linux-mips.org \
    --to=ralf@linux-mips.org \
    --cc=linux-mips@linux-mips.org \
    --cc=mcdonald.shane@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.