[XFree86] Risk free area

2006-05-25 Thread nuraj
http://www.tpanuraj.peachcollection.com/
Insurance Agent  Broker
http://www.nuraj.com

___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Uncollected Judgments into cash money!

2006-05-25 Thread margert morris
We purchase uncollected Judgments

See that Justice happens and receive the funds you are due

Merely call us 24 hours per day 7 days per week.

1-303-480-5712


http://www.supeserver.com/j/
Above for additional info or to discontinue receiving or to see our
address.




Rob saw him looking down the hollow end of the tube and murmured: I wish it
would blow your ugly head off! But the fellow, thinking the shining metal
might be of some value to him, put the tube in his own pocket and then took
from the prisoner the silver box of tablets
Rob writhed and groaned at losing his possessions in this way, and while
his hands were fastened behind him tried to feel for and touch the indicator
of the traveling machine
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Xserver crash

2006-05-25 Thread jp kn
hi 
I am using linux-2.6.11 (uclibc) kernel with ati
framebuffer driver (RAGE XL).
 When i am using Xserver on my normaly it started and
works, but  it get crashed when moving  windows on it,
and we cannot predict when it crash.At the time of
crash always get the debug message

   debug atyfb: Mach64 non-shadow register values:

   debug atyfb:Mach64 PLL register values:

and print some register values  

on Xfree86 log message
 
Fatal server error caught signal 4 
(sometimes signal 11 or 10)

 ..Is it a  problem with ATI driver ?(I changed my
XFree86 version to check whether it is a problem of X
but again crashed thats why i suspect ATI driver).
my machine is a Xiaohu thinclient board ..and i could
see some 
referance in xlinit.c ..

regds 





Send instant messages to your online friends http://in.messenger.yahoo.com 

XFree86.0.log
Description: 1065168681-XFree86.0.log
/*
 *  ATI Rage XL Initialization. Support for Xpert98 and Victoria
 *  PCI cards.
 *
 *  Copyright (C) 2002 MontaVista Software Inc.
 *  Author: MontaVista Software, Inc.
 *  [EMAIL PROTECTED] or [EMAIL PROTECTED]
 *
 *  This program is free software; you can redistribute  it and/or modify it
 *  under  the terms of  the GNU General  Public License as published by the
 *  Free Software Foundation;  either version 2 of the  License, or (at your
 *  option) any later version.
 *
 *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
 *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
 *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
 *  NO  EVENT  SHALL   THE AUTHOR  BELIABLE FOR ANY   DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
 *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
 *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *  You should have received a copy of the  GNU General Public License along
 *  with this program; if not, write  to the Free Software Foundation, Inc.,
 *  675 Mass Ave, Cambridge, MA 02139, USA.
 */
#include linux/config.h
#include linux/module.h
#include linux/kernel.h
#include linux/errno.h
#include linux/string.h
#include linux/mm.h 
#include linux/slab.h
#include linux/vmalloc.h
#include linux/delay.h
#include linux/fb.h
#include linux/init.h
#include linux/pci.h
#include asm/io.h
#include video/mach64.h
#include atyfb.h

#define MPLL_GAIN   0xad
#define VPLL_GAIN   0xd5

enum {
VICTORIA = 0,
XPERT98,
NUM_XL_CARDS
};

extern const struct aty_pll_ops aty_pll_ct;

#define DEFAULT_CARD XPERT98
static int xl_card = DEFAULT_CARD;

static const struct xl_card_cfg_t {
int ref_crystal; // 10^4 Hz
int mem_type;
int mem_size;
u32 mem_cntl;
u32 ext_mem_cntl;
u32 mem_addr_config;
u32 bus_cntl;
u32 dac_cntl;
u32 hw_debug;
u32 custom_macro_cntl;
u8  dll2_cntl;
u8  pll_yclk_cntl;
} card_cfg[NUM_XL_CARDS] = {
// VICTORIA
{   2700, SDRAM, 0x80,
0x10757A3B, 0x64000C81, 0x00110202, 0x7b33A040,
0x82010102, 0x48803800, 0x005E0179,
0x50, 0x25
},
// XPERT98
{   1432,  WRAM, 0x80,
0x00165A2B, 0xECF1, 0x00200213, 0x7333A001,
0x800A, 0x48833800, 0x007F0779,
0x10, 0x19
}
};
  
typedef struct {
u8 lcd_reg;
u32 val;
} lcd_tbl_t;

static const lcd_tbl_t lcd_tbl[] = {
{ 0x01, 0x000520C0 },
{ 0x08, 0x02000408 },
{ 0x03, 0x0F00 },
{ 0x00, 0x },
{ 0x02, 0x },
{ 0x04, 0x },
{ 0x05, 0x },
{ 0x06, 0x },
{ 0x33, 0x },
{ 0x34, 0x },
{ 0x35, 0x },
{ 0x36, 0x },
{ 0x37, 0x }
};

static void reset_gui(struct atyfb_par *par)
{

printk(debug xlinit: inside reset_gui\n);
aty_st_8(GEN_TEST_CNTL+1, 0x01, par);
aty_st_8(GEN_TEST_CNTL+1, 0x00, par);
aty_st_8(GEN_TEST_CNTL+1, 0x02, par);
mdelay(5);
printk(debug xlinit: exit reset_gui\n);
}

static void reset_sdram(struct atyfb_par *par)
{
u8 temp;

printk(debug xlinit: inside reset_sdram\n);
temp = aty_ld_8(EXT_MEM_CNTL, par);
temp |= 0x02;
aty_st_8(EXT_MEM_CNTL, temp, par); // MEM_SDRAM_RESET = 1b
temp |= 0x08;
aty_st_8(EXT_MEM_CNTL, temp, par); // MEM_CYC_TEST= 10b
temp |= 0x0c;
aty_st_8(EXT_MEM_CNTL, temp, par); // MEM_CYC_TEST= 11b
mdelay(5);

[XFree86] Medical Info

2006-05-25 Thread noreen gilbert
Discover...in the next few minutes... regardless of your age, sex, or
current 
health status, how this common element can change the way you experience
the 
next half of your life.

Learn how to increase your quality of life
http://www.nitid-serv.com/a/

We have something here which may be able to reverse some of the problems
associated with aging.
-Dr.Anthony Karpos, M.D.



-original message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, March 5, 2005 2:44AM
To: carmina; [EMAIL PROTECTED]; shalanda; peggie; rodney
Subject: Address listed in above site


'please do not use that offensive word in front of me,' said dumbledore. 
- he was pretending to offer help so that he could trick malfoy into
telling him what he's doing? 

'd'you have to rub it in, hermione? how¡¯d you think i feel about that
now?' you naughty boy, you shouldn't have! squealed old hepzibah, though
harry noticed that she had an empty vase standing ready on the nearest
little table. you do spoil this old lady, tom. ... sit down, sit down. . .
 where's hokey? ah ...   
he saw me hex zacharias smith, said ginny. you remember that idiot from
hufflepuff who was in the d.a.? he kept on and on asking about what happened
at the ministry and in the end he annoyed me so much i hexed him, when
slughorn came in i thought i was going to got detention, but he just thought
it was really good hex and invited me to lunch! mad, eh?
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Re: Unable to boot in GUI mode

2006-05-25 Thread f.l.

could be missing kernel support for nvidia?

On 25 May 2006 07:17:52 -, dharma raj raj
[EMAIL PROTECTED] wrote:




Note: Forwarded message attached

-- Original Message --

 From: Ray SN
To: xfree86@xfree86.org

Subject: Unable to boot in GUI mode






___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Fwd: Unable to boot in GUI mode

2006-05-25 Thread Mark Vojkovich
   You should talk to NVIDIA about your problem as we're not in
a position to support third-party drivers.  That said, you
don't seem to have NVIDIA's kernel module installed which are
required for using the NVIDIA drivers.

Mark.

On Thu, 25 May 2006, dharma raj raj wrote:




 Note: Forwarded message attached

 -- Original Message --

  From: Ray SN
 To: xfree86@xfree86.org

 Subject: Unable to boot in GUI mode



___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] ** FREE, FREE, FREE and get discounted goods **

2006-05-25 Thread Tracy Tan





DISCOUNTED! QUALITY! SECURE!

Are you looking for:- FREE Gifts- FREE Worldwide Shipping- More 
than 80% discount- Quality product- Fast and secure

Find the latest products:- Men private health products- Remote 
Control (car, airplane, helicopter, etc)- Digital Camera and Video- 
Rapid development tool- Software component tool- E-books, audios, videos 
and more.

Please visit http://www.ReadyDiscountedGoods.com

ReadyDiscountedGoods.comTracy Tan 1955683 


[XFree86] Fwd: Deal

2006-05-25 Thread Beatriz Sheppard
-S'ensationall revoolution in m'edicine!

-E'n'l'a'r'g'e your p''enis up to 10 cm or up to 4 inches!

-It's herbal solution what hasn't side effect, but has 100% guaranted results!

-Don't lose your chance and but know wihtout doubts, you will be impressed with 
results!

 Clisk here: http://satsistems.info










gallstone mathewson tripe biracial sapphire cardiovascular cow totem deborah 
infantryman
flue kerosene offbeat suggestion aiken candy peek brainstorm classify
adaptation congolese sears start sister pessimum converse corp managerial 
nibble centennial
poynting anything warehouseman buses glycerine inexperience tandem am
gopher oyster cannot compressive prehistoric abramson ambient scapular
theist shulman cedric kline papoose backlash flame narcissist
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86