All of lore.kernel.org
 help / color / mirror / Atom feed
* gdbserver
@ 2002-03-12 19:22 Lanny DeVaney
  2002-03-12 20:45 ` gdbserver Johannes Stezenbach
  2002-03-12 22:10 ` gdbserver Daniel Jacobowitz
  0 siblings, 2 replies; 19+ messages in thread
From: Lanny DeVaney @ 2002-03-12 19:22 UTC (permalink / raw)
  To: linux-mips

I've looked back through the archives and find some references to 
problems configuring and/or building gdbserver for mips-linux.

I'm attempting to build gdb/gdbserver with --target=mips-linux as well, 
using gdb-5.1.1.  Have the earlier issues (they looked to be 1-2 years 
old) been resolved or am I still looking at a "manual build" process? 
 I'm getting lots of errors with the build, although the configure seems 
to go OK.  x86 host, linux-mips target.

Thanks for any help you can provide,
Lanny DeVaney
Red Hat, Inc.

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [PATCH] generic clk API implementation for MIPS
@ 2007-06-26 15:20 Franck Bui-Huu
  2007-06-26 16:33 ` Atsushi Nemoto
  0 siblings, 1 reply; 19+ messages in thread
From: Franck Bui-Huu @ 2007-06-26 15:20 UTC (permalink / raw)
  To: Atsushi Nemoto; +Cc: linux-mips, ralf

Atsushi Nemoto wrote:
>
> Well, it seems simpler, but I suppose clk_register() is very useful ;)
>

Thinking about it, it seems to me that a clock is very static. I can't
think of a use case that would need to register a new clock after the
kernel has booted. Do you have a use case in mind ? cpu hotplug
perhaps ?

I'm a bit worry because if we go that way, we must be sure that
clk_register() can be called very early in the boot process. For
example, when using early printk thing...

> +static void clk_kref_release(struct kref *kref)
> +{
> +	/* Nothing to do */
> +}
> +
> +static void __clk_disable(struct clk *clk)
> +{
> +	if (clk->flags & CLK_ALWAYS_ENABLED)
> +		return;
> +
> +	kref_put(&clk->kref, clk_kref_release);
> +}
> +
> +void clk_disable(struct clk *clk)
> +{
> +	unsigned long flags;
> +
> +	spin_lock_irqsave(&clock_lock, flags);
> +	__clk_disable(clk);
> +	spin_unlock_irqrestore(&clock_lock, flags);
> +}
> +EXPORT_SYMBOL_GPL(clk_disable);

It seems that you stripped too much here: where clk->disable() method
is called ?

> +struct clk;
> +
> +struct clk_ops {
> +	void (*init)(struct clk *clk);
> +	void (*enable)(struct clk *clk);
> +	void (*disable)(struct clk *clk);
> +	int (*set_rate)(struct clk *clk, unsigned long rate);
> +};
> +
> +struct clk {
> +	struct list_head	node;
> +	const char		*name;
> +	int			id;
> +
> +	struct clk		*parent;

Is this field used by board code ?
---
                Franck

^ permalink raw reply	[flat|nested] 19+ messages in thread
* gdbserver
@ 2002-01-25 10:20 Kristberg Karlsson
  0 siblings, 0 replies; 19+ messages in thread
From: Kristberg Karlsson @ 2002-01-25 10:20 UTC (permalink / raw)
  To: linux-kernel

Hello out there.
I've heard about a program for remote debugging called gdbserver.
Does anyone know how to get hold of it.

Agust Karlsson
Pallas Informatik A/S
Allerod Stationsvej 2D
DK-3450 Allerod
DENMARK



Sent með Frípósti frá Vísir.is

^ permalink raw reply	[flat|nested] 19+ messages in thread
* gdbserver
@ 2000-01-22  3:20 dony
  2000-01-22 10:27 ` gdbserver Jesper Skov
  0 siblings, 1 reply; 19+ messages in thread
From: dony @ 2000-01-22  3:20 UTC (permalink / raw)
  To: linuxppc-embed


Hello,

       Now I want to use gdbserver to debug my test app.
      Running "gdbserver :6666 ./mytest" on the target (Powerpc 860)
show a message:
                    Process ./mytest created :pid=8
      But I don't know how to run gdb on the host (X86). The README
doesn't seem to explain
clearly . It says first running "gdb mytest" on the host and then
"target remote mytarget:6666".
But I don't understand something about "gdb mytest" . At this time
should I run a x86 "gdb" or something like "powerpc-linux-gdb"? And the
"mytest"? Is it compiled with x86 gcc or cross-compiled with
"powerpc-linux-gcc"? Really I am very confused at this point:-((
       Do you have any experience to share with me about how to build
and run gdbserver?
Or do you have any other debug tools which can be used in embedded-linux
environment?
        The README for gdbserver is written by Stu Grossman and Fred
Fish.
        Does someone know their email address?
Thank you very much:-)
dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: gdbserver
@ 2000-01-21 12:38 kd
  0 siblings, 0 replies; 19+ messages in thread
From: kd @ 2000-01-21 12:38 UTC (permalink / raw)
  To: dony; +Cc: jlewis, linuxppc-embedded



Hi,

No I did not solve this. I put it on hold for a while since I can still
able to do development on my i386 system.
But soon I  will have to tackle this again since I will have to start
running the firmware on the final target.
Actually I think I might just insert more memory and run the whole gdb on
the target hardware.....

K.D.



dony wrote:


How do you solve all the above problems?
Thank you very much.
dony


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 19+ messages in thread
* gdbserver
@ 1999-12-21 14:35 kd
  1999-12-21 16:05 ` gdbserver Jim Lewis
  2000-01-21  7:25 ` gdbserver dony
  0 siblings, 2 replies; 19+ messages in thread
From: kd @ 1999-12-21 14:35 UTC (permalink / raw)
  To: linuxppc-embedded


Hi,

I am trying to get gdbserver to run on my mpc823 board. (The precompiled
gdbserver is not working for me, it does not seem to get argc and argv
correctly into main() and always terminates with "usage info".

Using the vanilla gdb-4.18 is of no use, since it has not support for ppc.
Using the gdbserver source that Dan posted here a few weeks back results in
the
the following undefined symbols,
PTRACE_POKEUSR
PTRACE_PEEKUSR
KERNEL_U_ADDR
when compiling low-linux.c
If I define these symbols to 6, 3 and 0 respectively, everything compiles
fine, but the linker fails with the error,
undefined referenve to REGISTER_U_ADDR in function register_addr.

These are defined (for some of the other targets) in directory gdb/config/.
Any idea what is missing?

K.D.


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2007-06-28 22:20 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-12 19:22 gdbserver Lanny DeVaney
2002-03-12 20:45 ` gdbserver Johannes Stezenbach
2002-03-12 21:46   ` gdbserver Lanny DeVaney
2002-03-12 22:10 ` gdbserver Daniel Jacobowitz
2002-03-12 22:16   ` gdbserver Lanny DeVaney
  -- strict thread matches above, loose matches on Subject: below --
2007-06-26 15:20 [PATCH] generic clk API implementation for MIPS Franck Bui-Huu
2007-06-26 16:33 ` Atsushi Nemoto
2007-06-27 15:39   ` Christoph Hellwig
2007-06-28  2:22     ` Atsushi Nemoto
2007-06-28  8:37       ` Christoph Hellwig
2007-06-28 20:45         ` gdbserver Ratin Rahman (mratin)
2007-06-28 20:45           ` gdbserver Ratin Rahman (mratin)
2007-06-28 21:41           ` gdbserver David Daney
2007-06-28 22:19             ` gdbserver Ratin Rahman (mratin)
2007-06-28 22:19               ` gdbserver Ratin Rahman (mratin)
2002-01-25 10:20 gdbserver Kristberg Karlsson
2000-01-22  3:20 gdbserver dony
2000-01-22 10:27 ` gdbserver Jesper Skov
2000-01-24  1:51   ` gdbserver dony
2000-01-24  8:20     ` gdbserver Jesper Skov
2000-01-21 12:38 gdbserver kd
1999-12-21 14:35 gdbserver kd
1999-12-21 16:05 ` gdbserver Jim Lewis
2000-01-21  7:25 ` gdbserver dony

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.