ÓÐÈËÊÔ¹ý±àÒëU-BOOT 1.1.4ÒÔÉϵİ汾Æô¶¯S3C2410/SMDK2410¼æÈݵĿª·¢°åÂð? ÎÒ×î½üÊÔ×űàÒëÁËU-BOOT-1.1.4, U-BOOT-1.1.5, U-BOOT-1.1.6ºÍU-BOOT-2006-06-30-2020, ʹÓõĿª·¢°åÊdzɶ¼²©î£µÄMC2410A. MC2410A¾Ý˵ÊÇ»ùÓÚS3C2410µÄ, Ö»Êdzɶ¼²©î£ÔÚS3C2410µÄ»ù´¡ÉÏ×öÁËÒ»µã¸Ä¶¯, »ù±¾ÅäÖÃÊÇARM920T, 64MB SDRAM¼Ó64MB NAND FLASH, ûÓÐNOR FLASH. MC2410A¿ÉÒÔÓÃVIVI BOOTLOADERÆô¶¯. µ«ÊÇÎҰѱàÒëºÃµÄu-boot.binͨ¹ýJTAG½Ó¿ÚÉÕµ½NAND FLASHÉÏÒÔºó, ¹ØµçÔ´ÔÙ¼ÓµçȴûÓÐÈκÎÆÁÄ»ÏÔʾ (ÎÒÊÇͨ¹ý´®¿ÚÁ¬½ÓCONSOLEµÄ). ÎÒÊÔ¹ýÐÞ¸Ä u-boot/board/smdk2410/ Ŀ¼ÏµÄu-boot.lds, °ÑSECTIONS{¡}ÀïµÄµÚÒ»ÐÐ ¡°. = 0x¡¡± ¸Ä³É0x33f80000, 0x33f00000»ò0x00000000, ¶¼Ã»ÓÐÓÃ. ÎÒÒ²ÊÔ¹ýÓà vivi/arch/s3c2410/ Ŀ¼ÏµÄhead.S ÍêÈ«Ìæ»» u-boot/cpu/arm920t/ ϵÄstart.S, ¿´¿´ÆðʼÓÚ¡±_start:¡±µÄÕâ¶Î»ã±à´úÂëÔÚu-boot.binÄÜ·ñ±»Ó²¼þʶ±ð, µ«»¹ÊÇʲô·´Ó¦¶¼Ã»ÓÐ (ÎÒÔÚÕâ¶Î»ã±à´úÂëÀï²åÈëÁË»ã±à´òÓ¡Óï¾äÏò´®¿ÚÊä³öµ÷ÊÔÐÅÏ¢, ÔÚVIVIÖбàÒëºóÊÇÄܹ»Õý³£´òÓ¡µÄ). ÎÒûÓÐÐÞ¸ÄÈκÎMakefile»òconfig.mk, ²»ÖªµÀÊÇ·ñºÍMakefileµÄÉèÖÃÓйØ. ÄÄλ´óÏÀÄÜ°ïÎÒ¿´¿´Ë³±ãÖ¸µãÒ»ÏÂ, ÎÒÏÈллÁË.
ÒÔÏÂÊÇÎÒÓÃÀ´Ìæ»»u-boot/cpu/arm920t/start.S µÄvivi/arch/s3c2410/head.S. ÔÚVIVIϱàÒëÊÇ¿ÉÒÔÕý³£Æô¶¯µÄ, ·ÅÔÚU-BOOTÀï¾Íû·´Ó¦ÁË.
/*
* vivi/arch/s3c2410/head.S:
* Initialise hardware
*
* Copyright (C) 2001 MIZI Research, Inc.
*
* 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 program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* Author: Janghoon Lyu <nandy@mizi.com>
* Date : $Date: 2003/02/26 10:38:11 $
*
* $Revision: 1.18 $
*
*
* History:
*
* 2002-05-14: Janghoon Lyu <nandy@mizi.com>
* - Initial code
*
*/
#include "linkage-vivi.h"
@ Start of executable code
ENTRY(_start)
ENTRY(ResetEntryPoint)
@
@ Exception vector table (physical address = 0x00000000)
@
@ 0x00: Reset
b Reset
@ 0x04: Undefined instruction exception
UndefEntryPoint:
b HandleUndef
@ 0x08: Software interrupt exception
SWIEntryPoint:
b HandleSWI
@ 0x0c: Prefetch Abort (Instruction Fetch Memory Abort)
PrefetchAbortEnteryPoint:
b HandlePrefetchAbort
@ 0x10: Data Access Memory Abort
DataAbortEntryPoint:
b HandleDataAbort
@ 0x14: Not used
NotUsedEntryPoint:
b HandleNotUsed
@ 0x18: IRQ(Interrupt Request) exception
IRQEntryPoint:
b HandleIRQ
@ 0x1c: FIQ(Fast Interrupt Request) exception
FIQEntryPoint:
b HandleFIQ
@
@ VIVI magics
@
@ 0x20: magic number so we can verify that we only put
.long 0
@ 0x24:
.long 0
@ 0x28: where this vivi was linked, so we can put it in memory in the right place
.long _start
@ 0x2C: this contains the platform, cpu and machine id
.long 0x010600C1
@ 0x30: vivi capabilities
.long 0
@ 0x34:
b SleepRamProc
.balignl 16,0xdeadbeef
_TEXT_BASE:
.word 0x33f00000
.globl _armboot_start
_armboot_start:
.word _start
/*
* These are defined in the board-specific linker script.
*/
.globl _bss_start
_bss_start:
.word 0
.globl _bss_end
_bss_end:
.word 0
@
@ Start VIVI head
@
Reset:
/*
* set the cpu to SVC32 mode
*/
mrs r0,cpsr
bic r0,r0,#0x1f
orr r0,r0,#0xd3
msr cpsr,r0
@ disable watch dog timer
mov r0, #0x53000000
mov r1, #0x0
str r1, [r0]
@ disable all interrupts
mov r0, #0x4A000000
mov r1, #0xffffffff
str r1, [r0, #0x00000008]
ldr r1, =0x3ff
str r1, [r0, #0x0000001C]
@ initialise system clocks
mov r1, #CLK_CTL_BASE
mvn r2, #0xff000000
str r2, [r1, #oLOCKTIME]
@ 1:2:4
mov r0, #0x4C000000
mov r1, #0x3
str r1, [r0, #0x00000014]
mrc p15, 0, r1, c1, c0, 0 @ read ctrl register
orr r1, r1, #0xc0000000 @ Asynchronous
mcr p15, 0, r1, c1, c0, 0 @ write ctrl register
@ now, CPU clock is 200 Mhz
mov r1, #CLK_CTL_BASE
ldr r2, mpll_200mhz
str r2, [r1, #oMPLLCON]
bl memsetup
@ All LED on
mov r1, #GPIO_CTL_BASE
add r1, r1, #oGPIO_F
ldr r2,=0x55aa
str r2, [r1, #oGPIO_CON]
mov r2, #0xff
str r2, [r1, #oGPIO_UP]
mov r2, #0x00
str r2, [r1, #oGPIO_DAT]
@ set GPIO for UART
mov r1, #GPIO_CTL_BASE
add r1, r1, #oGPIO_H
ldr r2, gpio_con_uart
str r2, [r1, #oGPIO_CON]
ldr r2, gpio_up_uart
str r2, [r1, #oGPIO_UP]
bl InitUART
#ifdef CONFIG_DEBUG_LL
@ Print current Program Counter
ldr r1, SerBase
mov r0, #'\r'
bl PrintChar
mov r0, #'\n'
bl PrintChar
mov r0, #'@'
bl PrintChar
ldr r0, STR_OK
ldr r1, SerBase
bl PrintWord
mov r0, pc
bl PrintHexWord
#endif
bl copy_myself
@ jump to ram
ldr r1, =on_the_ram
add pc, r1, #0
nop
nop
1: b 1b @ infinite loop
on_the_ram:
#ifdef CONFIG_DEBUG_LL
ldr r1, SerBase
ldr r0, STR_STACK
bl PrintWord
ldr r0, DW_STACK_START
bl PrintHexWord
#endif
@ get read to call C functions
ldr sp, DW_STACK_START @ setup stack pointer
mov fp, #0 @ no previous frame, so fp=0
mov a2, #0 @ set argv to NULL
bl main @ call main
mov pc, #0x00000000 @ otherwise, reboot
@
@ End VIVI head
@
/*
* subroutines
*/
@
@ Wake-up codes
@
WakeupStart:
@ Clear sleep reset bit
ldr r0, PMST_ADDR
mov r1, #0x10
str r1, [r0]
@ Release the SDRAM signal protections
ldr r0, PMCTL1_ADDR
ldr r1, [r0]
bic r1, r1, #((1 << 19) | (1 << 18) | (1 << 17))
str r1, [r0]
@ Go...
ldr r0, PMSR0_ADDR @ read a return address
ldr r1, [r0]
mov pc, r1
nop
nop
1: b 1b @ infinite loop
SleepRamProc:
@ SDRAM is in the self-refresh mode */
ldr r0, REFR_ADDR
ldr r1, [r0]
orr r1, r1, #(1 << 22)
str r1, [r0]
@ wait until SDRAM into self-refresh
mov r1, #16
1: subs r1, r1, #1
bne 1b
@ Set the SDRAM singal protections
ldr r0, PMCTL1_ADDR
ldr r1, [r0]
orr r1, r1, #((1 << 19) | (1 << 18) | (1 << 17))
str r1, [r0]
/* Sleep... Now */
ldr r0, PMCTL0_ADDR
ldr r1, [r0]
orr r1, r1, #(1 << 3)
str r1, [r0]
1: b 1b
ENTRY(memsetup)
@ initialise the static memory
@ set memory control registers
mov r1, #0x48000000
adrl r0, mem_cfg_val
add r2, r0, #52
1: ldr r3, [r0], #4
str r3, [r1], #4
cmp r2, r0
bne 1b
mov pc, lr
@
@ copy_myself: copy vivi to ram
@
copy_myself:
mov r10, lr
@ reset NAND
mov r1, #NAND_CTL_BASE
ldr r2, =0xf830 @ initial value
str r2, [r1, #oNFCONF]
ldr r2, [r1, #oNFCONF]
bic r2, r2, #0x800 @ enable chip
str r2, [r1, #oNFCONF]
mov r2, #0xff @ RESET command
strb r2, [r1, #oNFCMD]
mov r3, #0 @ wait
1: add r3, r3, #0x1
cmp r3, #0xa
blt 1b
2: ldr r2, [r1, #oNFSTAT] @ wait ready
tst r2, #0x1
beq 2b
ldr r2, [r1, #oNFCONF]
orr r2, r2, #0x800 @ disable chip
str r2, [r1, #oNFCONF]
@ get read to call C functions (for nand_read())
ldr sp, DW_STACK_START @ setup stack pointer
mov fp, #0 @ no previous frame, so fp=0
@ copy vivi to RAM
ldr r0, =0x33f00000
mov r1, #0x0
mov r2, #0x20000
bl nand_read_ll
tst r0, #0x0
beq ok_nand_read
#ifdef CONFIG_DEBUG_LL
bad_nand_read:
ldr r0, STR_FAIL
ldr r1, SerBase
bl PrintWord
1: b 1b @ infinite loop
#endif
ok_nand_read:
#ifdef CONFIG_DEBUG_LL
ldr r0, STR_OK
ldr r1, SerBase
bl PrintWord
#endif
@ verify
mov r0, #0
ldr r1, =0x33f00000
mov r2, #0x400 @ 4 bytes * 1024 = 4K-bytes
go_next:
ldr r3, [r0], #4
ldr r4, [r1], #4
teq r3, r4
bne notmatch
subs r2, r2, #4
beq done_nand_read
bne go_next
notmatch:
#ifdef CONFIG_DEBUG_LL
sub r0, r0, #4
ldr r1, SerBase
bl PrintHexWord
ldr r0, STR_FAIL
ldr r1, SerBase
bl PrintWord
#endif
1: b 1b
done_nand_read:
#ifdef CONFIG_DEBUG_LL
ldr r0, STR_OK
ldr r1, SerBase
bl PrintWord
#endif
mov pc, r10
@ clear memory
@ r0: start address
@ r1: length
mem_clear:
mov r2, #0
mov r3, r2
mov r4, r2
mov r5, r2
mov r6, r2
mov r7, r2
mov r8, r2
mov r9, r2
clear_loop:
stmia r0!, {r2-r9}
subs r1, r1, #(8 * 4)
bne clear_loop
mov pc, lr
@ Initialize UART
@
@ r0 = number of UART port
InitUART:
ldr r1, SerBase
mov r2, #0x0
str r2, [r1, #oUFCON]
str r2, [r1, #oUMCON]
mov r2, #0x3
str r2, [r1, #oULCON]
ldr r2, =0x245
str r2, [r1, #oUCON]
#define UART_BRD ((50000000 / (115200 * 16)) - 1)
mov r2, #UART_BRD
str r2, [r1, #oUBRDIV]
mov r3, #100
mov r2, #0x0
1: sub r3, r3, #0x1
tst r2, r3
bne 1b
mov pc, lr
@
@ Exception handling functions
@
HandleUndef:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_UNDEF
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandleSWI:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_SWI
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandlePrefetchAbort:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_PREFETCH_ABORT
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandleDataAbort:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_DATA_ABORT
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandleIRQ:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_IRQ
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandleFIQ:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_FIQ
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
HandleNotUsed:
#ifdef CONFIG_DEBUG_LL
mov r12, r14
ldr r0, STR_NOT_USED
ldr r1, SerBase
bl PrintWord
bl PrintFaultAddr
#endif
1: b 1b @ infinite loop
@
@ Low Level Debug
@
#ifdef CONFIG_DEBUG_LL
@
@ PrintFaultAddr: Print falut address
@
@ r12: contains address of instruction + 4
@
PrintFaultAddr:
mov r0, r12 @ Print address of instruction + 4
ldr r1, SerBase
bl PrintHexWord
mrc p15, 0, r0, c6, c0, 0 @ Read fault virtual address
ldr r1, SerBase
bl PrintHexWord
mov pc, lr
@ PrintHexNibble : prints the least-significant nibble in R0 as a
@ hex digit
@ r0 contains nibble to write as Hex
@ r1 contains base of serial port
@ writes ro with XXX, modifies r0,r1,r2
@ TODO : write ro with XXX reg to error handling
@ Falls through to PrintChar
PrintHexNibble:
adr r2, HEX_TO_ASCII_TABLE
and r0, r0, #0xF
ldr r0, [r2, r0] @ convert to ascii
b PrintChar
@ PrintChar : prints the character in R0
@ r0 contains the character
@ r1 contains base of serial port
@ writes ro with XXX, modifies r0,r1,r2
@ TODO : write ro with XXX reg to error handling
PrintChar:
TXBusy:
ldr r2, [r1, #oUTRSTAT]
and r2, r2, #UTRSTAT_TX_EMPTY
tst r2, #UTRSTAT_TX_EMPTY
beq TXBusy
str r0, [r1, #oUTXHL]
mov pc, lr
@ PrintWord : prints the 4 characters in R0
@ r0 contains the binary word
@ r1 contains the base of the serial port
@ writes ro with XXX, modifies r0,r1,r2
@ TODO : write ro with XXX reg to error handling
PrintWord:
mov r3, r0
mov r4, lr
bl PrintChar
mov r0, r3, LSR #8 /* shift word right 8 bits */
bl PrintChar
mov r0, r3, LSR #16 /* shift word right 16 bits */
bl PrintChar
mov r0, r3, LSR #24 /* shift word right 24 bits */
bl PrintChar
mov r0, #'\r'
bl PrintChar
mov r0, #'\n'
bl PrintChar
mov pc, r4
@ PrintHexWord : prints the 4 bytes in R0 as 8 hex ascii characters
@ followed by a newline
@ r0 contains the binary word
@ r1 contains the base of the serial port
@ writes ro with XXX, modifies r0,r1,r2
@ TODO : write ro with XXX reg to error handling
PrintHexWord:
mov r4, lr
mov r3, r0
mov r0, r3, LSR #28
bl PrintHexNibble
mov r0, r3, LSR #24
bl PrintHexNibble
mov r0, r3, LSR #20
bl PrintHexNibble
mov r0, r3, LSR #16
bl PrintHexNibble
mov r0, r3, LSR #12
bl PrintHexNibble
mov r0, r3, LSR #8
bl PrintHexNibble
mov r0, r3, LSR #4
bl PrintHexNibble
mov r0, r3
bl PrintHexNibble
mov r0, #'\r'
bl PrintChar
mov r0, #'\n'
bl PrintChar
mov pc, r4
#endif
@
@ Data Area
@
@ Memory configuration values
.align 4
mem_cfg_val:
.long 0x22111110 @vBWSCON
.long 0x00000700 @vBANKCON0
.long 0x00000700 @vBANKCON1
.long 0x00000700 @vBANKCON2
.long 0x00000700 @vBANKCON3
.long 0x00000700 @vBANKCON4
.long 0x00000700 @vBANKCON5
.long 0x00018005 @vBANKCON6
.long 0x00018005 @vBANKCON7
.long 0x008E0459 @vREFRESH
.long 0xb1 @vBANKSIZE
.long 0x30 @vMRSRB6
.long 0x30 @vMRSRB7
@ Processor clock values
.align 4
mpll_200mhz:
.long 0x33f00338
@ inital values for GPIO
gpio_con_uart:
.long 0x0016faaa
gpio_up_uart:
.long 0x000007ff
.align 2
DW_STACK_START:
.word 0x33E64000+0x00008000-4
#ifdef CONFIG_DEBUG_LL
.align 2
HEX_TO_ASCII_TABLE:
.ascii "0123456789ABCDEF"
STR_STACK:
.ascii "STKP"
STR_UNDEF:
.ascii "UNDF"
STR_SWI:
.ascii "SWI "
STR_PREFETCH_ABORT:
.ascii "PABT"
STR_DATA_ABORT:
.ascii "DABT"
STR_IRQ:
.ascii "IRQ "
STR_FIQ:
.ascii "FIQ"
STR_NOT_USED:
.ascii "NUSD"
.align 2
STR_OK:
.ascii "OK "
STR_FAIL:
.ascii "FAIL"
STR_CR:
.ascii "\r\n"
#endif
.align 4
SerBase:
.long UART0_CTL_BASE
.align 4
PMCTL0_ADDR:
.long 0x4c00000c
PMCTL1_ADDR:
.long 0x56000080
PMST_ADDR:
.long 0x560000B4
PMSR0_ADDR:
.long 0x560000B8
REFR_ADDR:
.long 0x48000024
72.36.192.* ÓÚ 2007-06-21 12:25:35·¢±í:
Good design!
play poker | online roulette game | world series poker | free sim slots | live poker | casino slots | free 3 card poker | free online texas holdem | online slot games | play online poker
72.36.192.* ÓÚ 2007-06-21 12:24:33·¢±í:
Nice site!
play free slot machines | free slots for fun | play roulette online | free strip blackjack | internet gambling | free online slots no downloads | games download | bingo games | free casino slots | casino black jack
72.36.192.* ÓÚ 2007-06-21 12:24:14·¢±í:
Well done!
free poker software | free bingo online | poker online | casino games | play black jack | free online blackjack | casino on line | best online casino games | no limit texas hold em | download party poker
72.36.192.* ÓÚ 2007-06-21 12:24:00·¢±í:
Well done!
online gambling | best poker sites | free slots machines | cleopatra slots | no deposit online casino | video slot machines | poker texas holdem | free online slot machines | casinos online | free slot machine game
200.114.248.* ÓÚ 2007-06-21 09:51:35·¢±í:
2c1582119d9932f604953e667b0c95c2 http://permesso-di-soggiorno-per-cure.wdrksm.org/ http://voli-a-basso-costo-per-parigi.lvnrii.org/ http://7.flpvgy.org/qa/qadream/qadream7.html http://come-si-fa-a-formattare.cmuvxp.org/ http://privia-tastiera-88-tasti-pesati.rfnfwr.org/ http://saw-3-data-d-uscita.lvnrii.org/ http://algebra-degli-schemi-a-blocchi.rfnfwr.org/ http://casa-annuncio-immobiliare-appartamento-vendita.lvnrii.org/ http://fiat-500-sporting-anno-97.wdrksm.org/ http://costo-vino-lambrusco-cantina-riunite.lvnrii.org/ 3281355dcdf7961a81348339c85b8f61
72.36.192.* ÓÚ 2007-06-20 12:20:08·¢±í:
Well done!
razr v3 ringtones | free ringtones for t mobile | sms ringtones | free funny ringtones | motorola keypress ringtones | free ringtones for cricket | motorola razr v3 ringtones | ringtones for nextel | cellular south ringtones | free cellular ringtones
72.36.192.* ÓÚ 2007-06-20 12:19:38·¢±í:
Well done!
free 24 ctu ringtone | funny ringtones | free ringtones for tmobile | monophonic ringtones | download free nokia ringtone | star wars ringtone | ctu ringtone | free real music ringtones | free mp3 ringtones | free midi ringtone
72.36.192.* ÓÚ 2007-06-20 12:18:39·¢±í:
Nice site!
boost mobile ringtones | ringtone 24 ctu | free ringtones for tracfones | free us cellular ringtones | free mp3 ringtone download | free christian ringtones | tracfone ringtones | free ringtones for u s cellular | download free ringtone | wav ringtones
72.36.192.* ÓÚ 2007-06-20 12:18:21·¢±í:
Well done!
centennial wireless ringtones | free nextel ringtones | motorola mp3 ringtones | free ringtone creator | verizon free ringtones | sprint phones | free blackberry ringtones | ringtones mp3 free | sprint free ringtones | free ringtones for nokia
72.36.192.* ÓÚ 2007-06-20 12:18:10·¢±í:
Well done!
free midi ringtones | verizon ringtones | mp3 ringtone | free ringtones for alltel | anime ringtones | alltel ringtones | free sprint ringtones | download free polyphonic ringtones | ringtone websites | free us cellular ring tones
190.31.18.* ÓÚ 2007-06-20 08:00:44·¢±í:
96dfc511bb61a994399e32f8b4357d91 http://la-patente-di-pirandello-riassunto.ykjmka.org/index.htm http://guida-installazione-telefono-cellulare-bmw-x3.ihzaaf.org/index.htm http://walt-disney-disegno-cartone-colorare.ykjmka.org/index.htm http://elaborazione-dell-etica-cortese-cavalleresca.ehugfo.org/index.htm http://monte-dei-pegno-banco-sicilia.sjfxge.org/index.htm http://trucco-codice-devil-may-cry-3.oizdoo.org/index.htm http://negozio-bella-arto-dei-fratello-benedetto.vdaysf.org/index.htm http://software-fattura-professionista-lavoro-autonomo.oizdoo.org/index.htm http://centro-assistenza-packard-bell-salerno.ihzaaf.org/index.htm http://vecchia-sposa-via-sant-anna-it.kculvb.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
125.120.130.* ÓÚ 2007-06-19 21:19:02·¢±í:
ÓòÃû×¢²áÉ̺ÍÐéÄâÖ÷»úÌṩÉÌ,Ìṩ¹ú¼ÊÓòÃû×¢²á£¨.COM.NET.BIZ.SHµÈ£©¡¢¹úÄÚÓòÃû×¢²á£¨.COM.CN .CN .NET.CN£©¡¢
ÖÐÎÄÓòÃû×¢²áÒÔ¼°ÐéÄâÖ÷»ú¡¢ÍøÕ¾½¨Éè¡¢ÓòÃû¿Õ¼äµÈ»¥ÁªÍøÓ¦Ó÷þÎñ;¹úÄÚ.CNÓòÃû×¢²á10Ôª/Äê,¹ú¼ÊÓòÃû×¢²á65Ôª/Äê¡£
¡£¡£
×°ÐÞÎÛȾ¡£¡£
ixp425¡£¡£
ÉϺ£ÏÊ»¨¡£¡£
ÉîÛÚÉè¼Æ¹«Ë¾¡£¡£
ͬ²½µç»ú¡£¡£
º«¹úÄ£°å¡£¡£
½ø¿ÚÖá³Ð¡£¡£
½ø¿ÚÖá³Ð¡£¡£
72.36.192.* ÓÚ 2007-06-19 13:39:23·¢±í:
Well done!
play free bingo with free signup bonuses and no deposit | free online texas holdem games | the twilight zone video slots | video poker machine | virtual online casino gambling | free casino gambling win prizes | free blackjack download no ads | play video poker | slot machine odds | play bingo for free online
72.36.192.* ÓÚ 2007-06-19 13:38:54·¢±í:
Well done!
review poker online | ali baba slots | canadian online casinos | casino roulette wheel | poker all stars | wizard system free slots for fun | free moneyslots no deposit | free online poker tournaments | best internet sportsbook and casino | free slot machines
72.36.192.* ÓÚ 2007-06-19 13:37:50·¢±í:
Nice site!
free online poker tournaments online | super blackjack | bonus slots free | blackjack free game | online black jack | free casino gambling on line | slot machines casino | play free strip blackjack | live poker players | play slots
72.36.192.* ÓÚ 2007-06-19 13:37:30·¢±í:
Well done!
totally free multi line slots | online casino and sportsbook betting | casino slots no download free | online casino rating | free bingo games online | online poker free money | poker rooms | free no limit texas holdem | play keno games online | three card pokerodds
72.36.192.* ÓÚ 2007-06-19 13:37:16·¢±í:
Good design!
mobile web casinos | free bingo on line at yahoo | virtual casino | wheel of fortune slots for prizes | leigh leslie keno | casino download | free poker funds party poker | online poker real money | jackpot bingo | download roulette
201.243.26.* ÓÚ 2007-06-19 06:44:35·¢±í:
9523a57c77c05c45a71bfcd2d9c171c0 http://nervoso-violenza-scarsa-concentrazione-paura.mboptw.org/index.htm http://se-tu-non-sei-con-me.ugbiie.org/index.htm http://traduzione-testo-fantasy-earth-wind-fire.fyeclo.org/index.htm http://edificio-ad-ufficio-norman-foster.ugbiie.org/index.htm http://lettera-d-amore-romantica-periodo-guerra.ugbiie.org/index.htm http://polis-roma-6-novembre-2006.bqltxq.org/index.htm http://si-calcolano-i-metri-quadri.aenjba.org/index.htm http://cernusco-naviglio-lingua-italiana-straniero.tadctp.org/index.htm http://amstrad-home-theatre-5-1.nudmpy.org/index.htm http://fiaba-originale-dei-fratelli-grimm.tadctp.org/index.htm b8055c662679464e43a32265312932f9
72.36.192.* ÓÚ 2007-06-18 13:43:23·¢±í:
Well done!
casino slots no download free | free internet blackjack | slot | free sign up bonus at online casino | free online no downloads poker games | poker games | free draw poker | best casino gambling site online | play slots for real money | offshore online gambling
72.36.192.* ÓÚ 2007-06-18 13:42:57·¢±í:
Thank you!
casino download free game mac | free online draw poker | online free slot machines | free video keno | partypoker bonus code | texas holdem download free | absolutely free video poker slots no download | casino slot dice game | play bingo for kids online | no deposit required sign up bonus casinos
72.36.192.* ÓÚ 2007-06-18 13:41:55·¢±í:
Great work!
play poker online | large card video poker casinos play fo fun | download free game blackjack | blackjack software | free black jack play | casino slot | virtual online casino gambling | virtual casinos | online keno | download blackjack game
72.36.192.* ÓÚ 2007-06-18 13:41:33·¢±í:
Nice site!
paypal online casino | free online gaming | free play online poker | free downloads poker game | casino on the net | free wheel of fortune slots | online casino table games | riverbelle online casino | free poker for mac | top roulette casinos
72.36.192.* ÓÚ 2007-06-18 13:41:18·¢±í:
Great work!
bingo for free with prizes | play caribbean poker online | superbowl bingo games for kids | poker star | poker bot | uk casino directories | online monopoly slots | casino net | free on line black jack | free video poker that pays you to play
62.88.5.* ÓÚ 2007-06-18 06:05:46·¢±í:
4dc85dfc1f6848f70d70d1d3320dcd51 http://dragon-ball-z-eroe-pianeta-conuts.ogttfu.org/index.htm http://conseguenza-mancata-registrazione-contratto-locazione-sfratto.ogttfu.org/index.htm http://officina-volkswagen-milano-zona-nord.zpympv.org/index.htm http://guida-al-settaggio-router-michelangelo.mmaiuw.org/index.htm http://locali-di-salsa-a-roma.glzaqv.org/index.htm http://25-ottobre-1999-n-471.ogttfu.org/index.htm http://mancato-pagamento-spese-condominiale-inquilino.ovnfxu.org/index.htm http://legge-privacy-scadenza-31-marzo-2006.lwfhrb.org/index.htm http://davide-van-de-sfroos-spartito-canzone.esqhid.org/index.htm http://cd-cover-copertina-copertina-audio.esqhid.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
62.43.45.* ÓÚ 2007-06-17 04:39:08·¢±í:
eff53f409408c3c1dfa35235b0d7723e http://cam-prepagata-film-hard-core.ibngkc.org/index.htm http://capodanno-sul-lago-di-como.zfdyqr.org/index.htm http://mansionario-addetti-base-r-s.ibngkc.org/index.htm http://il-vecchio-che-leggeva-romanzi.zfdyqr.org/index.htm http://tassazione-plusvalore-vendita-dei-terreno.rvumsf.org/index.htm http://paolo-fox-site-sanihelp-msn-it.ibngkc.org/index.htm http://www-ilaria-d-amico-it.ibngkc.org/index.htm http://vendita-centi-servizio-mail-box.zfdyqr.org/index.htm http://immagine-dragon-ball-x-gratis.ibngkc.org/index.htm http://colonna-sonora-di-hollywood-homicide.rvumsf.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
72.36.192.* ÓÚ 2007-06-16 13:37:35·¢±í:
Thank you!
free slot machines games | american roulette wheel | internet bingo | multiplayer poker online | free little green men slots | free on line black jack | play poker online free mac | bet online casino and sportsbook | internet poker site | online game russian roulette
72.36.192.* ÓÚ 2007-06-16 13:37:09·¢±í:
Well done!
free casino games for fun | multiline slots | bingo palace | las vegas casino websites | free let it ride poker games | 15 lines slot games free | wheel of fortune slot machine computer game | free poker game | online poker room | online poker free money
72.36.192.* ÓÚ 2007-06-16 13:36:03·¢±í:
Thank you!
gambling portal | online poker room reviews | jetset poker | free slots to play for fun | free slots for fun | free texas holden poker | downloadable texas holdempoker software for mac | free bet online casino | slots for free | free texas holdem poker
72.36.192.* ÓÚ 2007-06-16 13:35:41·¢±í:
Good design!
free fun online slot machines | poker computer games | compare online satelite poker tournaments | wireless internet casinos | play little green men slots | free play money for pokerstars casino | boxing gambling odds | online poker bots | online slots play for free andnot poker | casino web site
72.36.192.* ÓÚ 2007-06-16 13:35:33·¢±í:
Great work!
holdem poker | play keno online free | casino slots no download free | online poker tournaments 3 buy in | free video poker game | internet casino gambling | free casino | casino offers online | free texas holdem tournaments | free multi line slots
200.120.49.* ÓÚ 2007-06-16 03:22:58·¢±í:
42b826e4b5ce7f8dde8fc042f764bb1a http://viaggio-pulman-ultimo-dell-anno.dkoomz.org/ http://pcr-hiv-costo-esame-veneto.asytgp.org/ http://un-pensiero-per-i-nonni.asytgp.org/ http://corso-ecm-tsrm-roma-dicembre-2006.uvosok.org/ http://carciofo-sott-olio-regione-sardegna.qtoruw.org/ http://gamba-deboli-dopo-pasto-causa.qtoruw.org/ http://genova-soccorso-linea-guida-118.asxhjv.org/ http://27-10-2006-centrale-latte-cremona.asxhjv.org/ http://voleva-lanciare-petardo-sedere-finisce-ospedale.kluoca.org/ http://comune-aprili-ano-cs-it.asytgp.org/ 017184126313b130655c75e326e14932
72.36.192.* ÓÚ 2007-06-15 13:51:09·¢±í:
Well done!
no download free roulette | poker machines | poker online | online blackjack tournaments | blackjack downloads | odyssey slot machine | online casino blackjack | online casino 500 bonus | online poker no deposit bonus | uk online casinos
72.36.192.* ÓÚ 2007-06-15 13:50:38·¢±í:
Great work!
pacific poker software | party poker deposit bonus code | poker tournaments ohio | free poker funds party poker | free playing casino slots machines | best online no download casinos | casino jackpot | online poker betting | online card game poker | internet blackjack
72.36.192.* ÓÚ 2007-06-15 13:49:31·¢±í:
Well done!
play online poker tournament | play free slots on line | online gambling games | best casino and sportsbook software | play bingo online | free casino money no deposit required | no deposit no download casinos | free games and bingo for cash and prizes | poker rooms | omaha poker
72.36.192.* ÓÚ 2007-06-15 13:49:11·¢±í:
Great work!
online casino directory | texas holdem game download | blackjack card shoe | slot game | online black jack play | gambling on the internet online | free texas hold em | online free poker | bet net casino online | online strip blackjack
72.36.192.* ÓÚ 2007-06-15 13:48:58·¢±í:
Great work!
electronic poker games | poker stars net | online free keno game | free poker site | online betting and poker | texas hold em poker free | play for fun jumbo card video poker | single deck blackjack | free casino downloads | play free slots
62.43.45.* ÓÚ 2007-06-15 01:47:18·¢±í:
ce98a0eb125e278b6bf69752fd32b119 http://zzobwb.org http://zzobwb.org http://bwmuus.org http://uzgvit.org http://yubecf.org http://www.nfavho.org http://www.leuawf.org http://www.uzgvit.org http://www.zdpnfm.org http://www.obkfqj.org a4d20a8afbc395002366bd667860c4d3
72.36.192.* ÓÚ 2007-06-14 13:44:49·¢±í:
Thank you!
online gambling slots | casino internet games | blackjack 21 | uk online casinos | casino portal | online gambling specials | bonus code partypoker | online casino betting | party poker million | gambling internet
72.36.192.* ÓÚ 2007-06-14 13:43:53·¢±í:
Nice site!
free casino download | bingo with no deposit signup bonus and no purchase | nickel slots | bridal shower bingo | free bingo no deposit | play free casino poker | free free slots progressive | free downloads monopoly casino | free online texas holdem no download | free slots no download
72.36.192.* ÓÚ 2007-06-14 13:42:52·¢±í:
Well done!
online casino usa | real deal slots | black jack free | toy slot machines | free poker for fun | direct casino software download | poker machine video | on line poker | play for fun casinos | bingo king