ÓÐÈËÊÔ¹ý±àÒë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
82.229.210.* ÓÚ 2007-06-01 16:09:14·¢±í:
0cf76f4a54611bbc907f29f18a9aae29 http://topcollegescomvscholarshiphtml.leikrf.org/stagione-invernale-arsiero-fratte/index.htm http://ghddrogacapello.gkgobd.org/bayahibe-balena/index.htm http://sistemanavigazionedvdmp8100.uzghnh.org/vendo-cucciolo-dalmata-150/index.htm http://qqvestito.pdjkai.org/caserma-ermanno-carlotto/index.htm http://mmsanimatobenvenutowindbuonanotte.mljuyb.org/dott-ssa-piersini-torino/index.htm http://ireneghergo.leikrf.org/accessorio-trenino-mehano/index.htm http://cenonecapodannopescasseroli.gkgobd.org/mastro-birraio-cesena/index.htm http://musicolwinxpadova.leikrf.org/trapianto-melanociti-vitiligine/index.htm http://piccolobucatomyricae.leikrf.org/istituto-salesiano-kerala/index.htm http://ombrellonefustolegno.gkgobd.org/istruzioni-cronotermostato-perry/index.htm 5447788e0ee79eeca3d64876f41eb1cf
72.36.192.* ÓÚ 2007-06-01 12:33:07·¢±í:
Nice site!
nextel ringtones | samsung ringtones | cheap ringtones | download free motorola ringtone | free anime ringtones | motorola ringtones free | ringtones composer | free ringtones for cellular south | ringtone 24 | verizon ringtones
72.36.192.* ÓÚ 2007-06-01 12:32:35·¢±í:
Nice site!
ringtone | free alltel ringtones | nascar ringtones | ringtone creator | free polyphonic ringtones | mobile ringtones | free midi ringtones | free ringtones samsung | midi ringtones | crazy frog ringtones
72.36.192.* ÓÚ 2007-06-01 12:31:38·¢±í:
Good design!
cingular free ringtones | cellphone ringtones | free blackberry ringtones | tmobile free ringtones | free mobile ringtones | ringtones cingular | downloadable ringtones | mp3 ringtone download | free sprint ringtones | free star wars ringtones
72.36.192.* ÓÚ 2007-06-01 12:31:13·¢±í:
Well done!
24 ctu ringtone verizon | harry potter ringtones | funny ringtone | sprint pcs ringtones | ringtones for motorola | free polyphonic | ringtones lg | alltel free ringtones | free mp3 ringtone | cricket ringtones
72.36.192.* ÓÚ 2007-06-01 12:30:35·¢±í:
Great work!
free tracfone ringtones | 24 ring tones | free phone downloads | mp3 ringtone converter | free hifi ringtones | blackberry ringtones | us cellular ringtones | free nokia ringtones | hifi ringtones | razr v3 ringtones
72.36.192.* ÓÚ 2007-05-31 12:29:38·¢±í:
Well done!
planet poker | poker game free | empire poker | poker texas | poker on line | free slot | slot games free | no download free slots | online roulette game | free slot machine
72.36.192.* ÓÚ 2007-05-31 12:29:08·¢±í:
Nice site!
poker for free | play blackjack free | roulette download | play bingo online | casino black jack | slot machine game | free casino money | paradise poker | on line gambling | world series of poker
72.36.192.* ÓÚ 2007-05-31 12:28:21·¢±í:
Great work!
free casino | slot machine | internet gambling | free texas holdem online | free cleopatra slots | free gambling | online free poker | play black jack | russian roulette games | blackjack download
72.36.192.* ÓÚ 2007-05-31 12:28:05·¢±í:
Great work!
slot machines free | no deposit casino | poker usa | play roulette online | poker free download | roulette online | free casino game | live poker | no deposit casinos | online slot games
72.36.192.* ÓÚ 2007-05-31 12:27:28·¢±í:
Well done!
internet casino | black jack game | texas holdem | strip blackjack game | fun slots | online slots | casinos on line | free no deposit casinos | party poker | play slots for free
125.120.137.* ÓÚ 2007-05-31 07:00:45·¢±í:
wow power leveling,Lineage 2 wow power leveling.
wow power leveling lvl service
and cheap wow power leveling,wow power leveling
sale for youWe offerwow power leveling
72.36.192.* ÓÚ 2007-05-30 12:36:29·¢±í:
Thank you!
online poker game | no deposit casino bonus | download casino | slots for fun | free cleopatra slots | free on line slots | texas holdem | roulette download | slot machines free | hold em poker
72.36.192.* ÓÚ 2007-05-30 12:35:55·¢±í:
Thank you!
free poker money | free online slots no downloads | game slot | video poker | casino on net | bingo online | poker games free | games online | free slots online | free games on line
72.36.192.* ÓÚ 2007-05-30 12:35:13·¢±í:
Thank you!
holdem poker | casino open usa | best online casinos | online poker usa | free texas holdem | online blackjack free | new no deposit casinos | poker download | monopoly online | omaha poker
72.36.192.* ÓÚ 2007-05-30 12:34:51·¢±í:
Nice site!
free online texas holdem | blackjack for free | play poker | sim slots | free no download slots | new no deposit online casinos | poker stars download | play casino games | slot machine | black jack free
72.36.192.* ÓÚ 2007-05-30 12:34:22·¢±í:
Nice site!
play poker for free | free blackjack | free casino | play slots for fun | free video | poker texas | black jack | online video slots | free slot machine games online | gambling machines
84.123.138.* ÓÚ 2007-05-30 08:27:25·¢±í:
5db0ea8092ca7750e60e39f7e4cdc921 http://ovvkft.org/estudio/estudio-de-vinheta-de-radio.html http://ovvkft.org/velhas/velhas-transando-pelada.html http://mnopyi.org/hotel/hotel-pousada-praia-grande-santos-sp.html http://mnopyi.org/receita/receita-de-molho-branco.html http://wfcqxw.org/arte/arte-egito-mulher-pintura.html http://wfcqxw.org/musica/musica-renascentista.html http://pegekq.org/fomosas/fomosas-em-sexo.html http://mnopyi.org/mulher/mulher-gata-home-page.html http://pegekq.org/ler/ler-disquete.html http://ovvkft.org/site/site-ig-br-carla-batatinha.html a91f06099d8916d08fc86aebeef191c8
72.36.192.* ÓÚ 2007-05-29 12:38:17·¢±í:
Well done!
planet poker | best bonus casino | free online games | texas hold em poker | video slot | casino download | free multi line slots | casinos online | free slot | online casinos
72.36.192.* ÓÚ 2007-05-29 12:37:44·¢±í:
Great work!
free poker games | noble poker | free play slots | black jack | poker texas holdem | bonus casino free online | casino game | poker stars | free black jack game | russian roulette
72.36.192.* ÓÚ 2007-05-29 12:36:57·¢±í:
Good design!
strip blackjack online | blackjack download | poker online | online casino | free slot machine games | sims free slots | play casino games | free poker sites | blackjack free games | free black jack games
72.36.192.* ÓÚ 2007-05-29 12:36:34·¢±í:
Nice site!
strip blackjack game | online poker usa | slot machines games | gambling machines | poker game online | free gambling | no deposit bonus | free slots on line | video poker machines | free slot machines games
72.36.192.* ÓÚ 2007-05-29 12:36:04·¢±í:
Thank you!
download poker | free poker online | free online texas holdem | casino slot games | online texas holdem | online slots free | free texas hold em | free slot game | free slot downloads | keno online
60.177.54.* ÓÚ 2007-05-29 07:54:33·¢±í:
ÐÔ¹¦ÄÜÕÏ°
¶«Ý¸ÒºÑ¹É豸
À¥Ã÷¸ß¶û·ò
×Ô¶¯ÃÅ
¼Óʪ»ú
200.65.68.* ÓÚ 2007-05-29 07:10:08·¢±í:
72f51a2980ffa885a81da3a38609947a http://grpytd.org/peca/peca-completamente-so.html http://xwqumn.org/lancha/lancha-venda.html http://xwqumn.org/galeria/galeria-foto-filme-terra-encantada-gaya.html http://lcitij.org/universidade/universidade-tecnologia-sao-paulo.html http://lcitij.org/grafitti/grafitti-e-sua-historia.html http://lcitij.org/modelo/modelo-cedulas-votacao.html http://grpytd.org/locais/locais-prova-mp-rj.html http://lcitij.org/empresa/empresa-sopro-injecao-plastica.html http://grpytd.org/concurso/concurso-publico-nova-andradina-ms.html http://lcitij.org/queijo/queijo-serra-canastra.html ea84313ff4cf4b8bb8ec851c693c83a5
60.176.82.* ÓÚ 2007-05-28 22:05:13·¢±í:
world of warcraft power leveling guide
Lineage 2 power level
Runescape money
eq2 gold
gold wow
everquest 2 gold
eq2 plat
archlord gold
lineage 2 adena
wow gold
gw gold
wow power leveling
wow powerleveling
leather sofa
201.210.39.* ÓÚ 2007-05-28 15:02:15·¢±í:
aa471513bc41141bf7e48863dfd88251 http://pegekq.info/boneca/boneca-bebe.html http://xvqeoy.info/embalagem/embalagem-ampolas-vidro.html http://ifrtox.info/guerra/guerra-civil-espanha.html http://pegekq.info/engenharia/engenharia-sanitaria.html http://ifrtox.info/reverter/reverter-aquecimento-global.html http://ifrtox.info/beckhauser/beckhauser-tubarao.html http://grpytd.info/sonia/sonia-gostosa-putaria-br.html http://ifrtox.info/crincas.txt/crincas.html http://ifrtox.info/navegacao/navegacao-granel.html http://pegekq.info/danca/danca-valquirias.html 921da3b25f91ff5411abb8e73f72697f
72.36.192.* ÓÚ 2007-05-28 12:53:00·¢±í:
Thank you!
poker web sites | free casino online | poker texas | casino games free | black jack free | play slots | black jack download | online slots free | roulette game | flash casinos
72.36.192.* ÓÚ 2007-05-28 12:52:23·¢±í:
Well done!
free play slots | free casino games online | slots free | monopoly slots | internet bingo | free online bingo | new no deposit casino | live poker | free slot machine downloads | us poker sites
72.36.192.* ÓÚ 2007-05-28 12:51:40·¢±í:
Thank you!
poker games online | poker | free poker sites | online gambling sites | online games | play online poker | play blackjack free | play roulette for free | free slot play | free poker games
72.36.192.* ÓÚ 2007-05-28 12:51:22·¢±í:
Great work!
free roulette games | sims free slots | free poker games online | free poker software | poker online free | on line casinos | free multi line slots | free slot machine games | russian roulette games | blackjack strip
72.36.192.* ÓÚ 2007-05-28 12:50:45·¢±í:
Nice site!
free slot | cleopatra slots | free video slot games | russian roulette | free online texas hold em | virtual poker | holdem poker | bonus poker | free online slots games | free poker money
190.75.163.* ÓÚ 2007-05-27 23:21:09·¢±í:
7864b8592db17948a2158370282ee2be http://lcitij.info/nova/nova-descoberta-cientificas.html http://xwqumn.info/receita/receita-desintoxicar-dieta.html http://lcitij.info/neuroanatomia/neuroanatomia-doenca.html http://sxrzpn.info/pedro/pedro-demo-pesquisa-construcao-conhecimento.html http://lcitij.info/parque/parque-de-diversao-hop-hary.html http://sxrzpn.info/crime/crime-organizado-cape-town.html http://ovvkft.info/clickjogos.txt/clickjogos.html http://wfcqxw.info/corpo/corpo-homem-sarados.html http://ovvkft.info/caloriasinteligentes.txt/caloriasinteligentes.html http://sxrzpn.info/apneia/apneia-mascara.html 6d9dd05b81c19c63ae8e87cbbcfe2050
72.36.192.* ÓÚ 2007-05-27 12:38:19·¢±í:
Great work!
free black jack | virtual poker | play free slots | slim slots free | free slots on line | online baccarat | free poker online | free casino | free bingo online | online poker sites
72.36.192.* ÓÚ 2007-05-27 12:37:47·¢±í:
Good design!
free poker software | free poker games | texas holdem poker | poker texas | free multi line slots | roulette game | free casinos | free no deposit casino | download blackjack | casino games free
72.36.192.* ÓÚ 2007-05-27 12:37:02·¢±í:
Well done!
texas holdem free online | absolute poker | play texas holdem | live poker | free online poker game | no deposit casino bonuses | no deposit bonus casinos | download free poker | online holdem | poker game
72.36.192.* ÓÚ 2007-05-27 12:36:38·¢±í:
Thank you!
new no deposit casinos | poker online free | casino download | free online slot machine | black jack game | poker game online | free texas holdem | free casino slot games | free online slots games | free bingo games
72.36.192.* ÓÚ 2007-05-27 12:36:10·¢±í:
Good design!
online free roulette | free slot | slot machines free | free blackjack | poker free | free online games | free slot machines games | free games on line | internet blackjack | play roulette online
82.159.59.* ÓÚ 2007-05-27 07:13:18·¢±í:
804f6b486cfbfd547fb25cac25fcf71a http://grpytd.info/viacao/viacao-bel-tour.html http://pegekq.info/arquimedes/arquimedes-descoberta-matematica.html http://mnopyi.info/sergio/sergio-negao.html http://grpytd.info/pargo/pargo-assado-brasa.html http://xvqeoy.info/feudalismo/feudalismo-crescimento-demografico.html http://mnopyi.info/25/25-marco-1824.html http://xvqeoy.info/biolab/biolab-bahia.html http://xvqeoy.info/fernando/fernando-luiz-costa.html http://mnopyi.info/evolucao/evolucao-greco-romana.html http://mnopyi.info/verilha.txt/verilha.html 899833c87d41a40d77c99858b4681e10
201.223.107.* ÓÚ 2007-05-26 17:05:36·¢±í:
270cd4cc911765339fa5be704ea6e2d3 http://wfcqxw.info/existe/existe-usina-nuclear-brasil.html http://xwqumn.info/site/site-zeca-pagodinho.html http://sxrzpn.info/cachacaria/cachacaria-canavial.html http://xwqumn.info/reuniao/reuniao-fruta-flores-imovel-caracteriza-estilo-artistico.html http://xwqumn.info/ilustracao/ilustracao-indio.html http://lcitij.info/sexshop/sexshop-bolinha-smell.html http://xwqumn.info/radiciacao/radiciacao-numero-irracionais.html http://sxrzpn.info/logotipo/logotipo-justica-balanca-espada.html http://lcitij.info/green/green-peace-produto-alimenticios-ltda.html http://ovvkft.info/faculdade/faculdade-tamandare.html 3c6c60ce2277246c0f4063c97808fccb