Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
[Request] Lenovo B480 bios wifi and batt...
Last Post: nzfunk
Today 08:11 AM
» Replies: 1
» Views: 693
Try your luck today.
Last Post: abielcm3
Today 08:09 AM
» Replies: 0
» Views: 6
[REQUEST] Acer Aspire 7739(G,Z) BIOS Unl...
Last Post: Maxinator500
Today 06:57 AM
» Replies: 54
» Views: 12115
ACER e5-721 recovery bios
Last Post: bergekste
Today 06:49 AM
» Replies: 35
» Views: 22438
[REQUEST] BIOS Unlock for Gigabyte G5-KD...
Last Post: Dudu2002
Yesterday 06:45 PM
» Replies: 6
» Views: 361
[REQUEST] Lenovo ThinkPad L450 (JDETxxWW...
Last Post: Dudu2002
Yesterday 03:29 PM
» Replies: 94
» Views: 41278
[REQUEST] Acer Nitro 5 AN515-54 BIOS Unl...
Last Post: Dudu2002
Yesterday 03:19 PM
» Replies: 84
» Views: 25949
[REQUEST] Lenovo G500 (78CNxxWW) BIOS Un...
Last Post: Alan23
Yesterday 11:54 AM
» Replies: 281
» Views: 126562
[REQUEST] Adding DDR3 support to Aptio I...
Last Post: Lixkote
Yesterday 05:46 AM
» Replies: 0
» Views: 156
HP Pro 3300 & 3400 (H61): Upgrade to Ivy...
Last Post: miant
Yesterday 03:03 AM
» Replies: 118
» Views: 80573
[REQUEST] Lenovo G70-70 BIOS Whitelist R...
Last Post: Dudu2002
05-13-2024 05:01 PM
» Replies: 134
» Views: 66777
[REQUEST] Acer Predator Helios 300 PH315...
Last Post: Dudu2002
05-13-2024 04:59 PM
» Replies: 11
» Views: 6224
[Request] Dell Inspiron 17r SE 7720 Unlo...
Last Post: flashmaniak
05-13-2024 08:55 AM
» Replies: 91
» Views: 93783
TerraMaster F2-220 Bios
Last Post: mcunanan9
05-13-2024 08:12 AM
» Replies: 2
» Views: 225
[REQUEST] Acer Nitro N50-610 BIOS Unlock
Last Post: Lucas66700
05-13-2024 07:59 AM
» Replies: 3
» Views: 282
[REQUEST] MSI B550M VDH WIFI BIOS UNLOCK
Last Post: CFW
05-12-2024 08:28 PM
» Replies: 0
» Views: 169
[REQUEST] Lenovo B590 (H5ETxxWW) Whiteli...
Last Post: Deltist
05-12-2024 03:09 PM
» Replies: 267
» Views: 65936
Acer Extensa 5620: CPU replace
Last Post: MPM
05-12-2024 01:22 PM
» Replies: 3
» Views: 385
[REQUEST] Acer Nitro 5 AN515-52 BIOS Unl...
Last Post: Dudu2002
05-12-2024 04:13 AM
» Replies: 21
» Views: 9281
Amibios 8 mod - problem with LPT port
Last Post: Beniu33
05-12-2024 04:10 AM
» Replies: 1
» Views: 240

[Dell Latitude D630, Precision M4300 laptop SATA-2 unlock]
#11
Hello,

I found this topic because I read somewhere, Dell D630 Sata speed is limited to 1.5 Gb/s. I thought, that it is possible to upload modified bios (like I did in Lenovo ThinkPad T61), but I didn't find any bios with Sata 3.0Gb/s activation...

I read descriptions above, and tried to do the same on my PC. Under windows vista I had problems with phisical memory access (I have never done this before under Win), so I tried under ubuntu. Memory access is also restricted but you can access it simpler than under Windows.

According step 4 from riprop post. I also got simmilar error when hexdump reached 0x100000. I didn't check why (probably it is much more restriced or not configured) - it doesn't metter. The point is, if you want to reach 0xf6ffb800 address with hexdump, you would have to wait a little - this address is from the end of addressing range (almost 4 GB of data have to be dumped before).

To get value from address 0xf6ffb800 I used very simple C application:
Code:
#include <stdio.h>
#include <fcntl.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/mman.h>

void main(void)
{

int mem_dev = open("/dev/mem", O_RDWR | O_SYNC);

const uint32_t mem_address = 0xf6dfb800;
uint32_t alloc_mem_size, page_mask, page_size;
void *mem_pointer, *virt_addr;

page_size = sysconf(_SC_PAGESIZE);
alloc_mem_size = (((0x100 / page_size) + 1) * page_size);
page_mask = (page_size - 1);

mem_pointer = mmap(NULL,alloc_mem_size,PROT_READ | PROT_WRITE,MAP_SHARED,mem_dev,(mem_address & ~page_mask));

virt_addr = (mem_pointer + (mem_address & page_mask));

printf("value 0x%08x\n", *((int *)virt_addr));

munmap(mem_pointer, alloc_mem_size);

close(mem_dev);
}

To run this application, don't forget to use sudo.
Result in my case was 0xe720ffc2. It is little different than expected 0xde127f03.. Maybe, because ABAR address is placed in 31..12 bits of 24h value? (Address would be 0x1edbf7 in this case. But 0x1edbf7 is not accessible like address 0x100000). Anyway, I checked 0xe720ffc2 value, I received from 0xf6dfb800. Bits 23..20 are equal ... 0010 b (SATA II already configured)! I am still not sure if address 0xf6dfb800 is correct to read SATA parameters from, but I checked what dmesg says about my SATA interfaces...

Code:
[ 1.187216] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
[ 1.187293] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x5 impl SATA mode
[ 1.187298] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
:
:
[ 1.196083] ata3: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfb900 irq 43
:
[ 1.196090] ata5: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfba00 irq 43
:
:
[ 1.516246] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.516285] ata5: SATA link down (SStatus 0 SControl 300)

That means only one thing - SATA 3.0 Gb/s is already activated in my Dell D630 laptop Smile
I checked this with gnome-disks benchmark, where average read speed from SSD drive is around 270 MB/s... It is around 2.26 Gb/s (much more than theoretical maximum 1.5 Gb/s for SATA I). Similar speed was reached on Lenovo T61 mentioned at the beginning...

So as a summary - don't worry, Dell D630 (with newest Bios A19) has already SATA 3.0 Gb/s unlocked! Smile

Kind Regards!
Greg Wo
find
quote
#12
(04-24-2014, 01:01 AM)GrzegorzWo Wrote: Hello,

I found this topic because I read somewhere, Dell D630 Sata speed is limited to 1.5 Gb/s. I thought, that it is possible to upload modified bios (like I did in Lenovo ThinkPad T61), but I didn't find any bios with Sata 3.0Gb/s activation...

I read descriptions above, and tried to do the same on my PC. Under windows vista I had problems with phisical memory access (I have never done this before under Win), so I tried under ubuntu. Memory access is also restricted but you can access it simpler than under Windows.

According step 4 from riprop post. I also got simmilar error when hexdump reached 0x100000. I didn't check why (probably it is much more restriced or not configured) - it doesn't metter. The point is, if you want to reach 0xf6ffb800 address with hexdump, you would have to wait a little - this address is from the end of addressing range (almost 4 GB of data have to be dumped before).

To get value from address 0xf6ffb800 I used very simple C application:

Code:
#include <stdio.h>
#include <fcntl.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/mman.h>

void main(void)
{

int mem_dev = open("/dev/mem", O_RDWR | O_SYNC);

const uint32_t mem_address = 0xf6dfb800;
uint32_t alloc_mem_size, page_mask, page_size;
void *mem_pointer, *virt_addr;

page_size = sysconf(_SC_PAGESIZE);
alloc_mem_size = (((0x100 / page_size) + 1) * page_size);
page_mask = (page_size - 1);

mem_pointer = mmap(NULL,alloc_mem_size,PROT_READ | PROT_WRITE,MAP_SHARED,mem_dev,(mem_address & ~page_mask));

virt_addr = (mem_pointer + (mem_address & page_mask));

printf("value 0x%08x\n", *((int *)virt_addr));

munmap(mem_pointer, alloc_mem_size);

close(mem_dev);
}

To run this application, don't forget to use sudo.
Result in my case was 0xe720ffc2. It is little different than expected 0xde127f03.. Maybe, because ABAR address is placed in 31..12 bits of 24h value? (Address would be 0x1edbf7 in this case. But 0x1edbf7 is not accessible like address 0x100000). Anyway, I checked 0xe720ffc2 value, I received from 0xf6dfb800. Bits 23..20 are equal ... 0010 b (SATA II already configured)! I am still not sure if address 0xf6dfb800 is correct to read SATA parameters from, but I checked what dmesg says about my SATA interfaces...


Code:
[ 1.187216] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
[ 1.187293] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x5 impl SATA mode
[ 1.187298] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
:
:
[ 1.196083] ata3: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfb900 irq 43
:
[ 1.196090] ata5: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfba00 irq 43
:
:
[ 1.516246] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.516285] ata5: SATA link down (SStatus 0 SControl 300)

That means only one thing - SATA 3.0 Gb/s is already activated in my Dell D630 laptop Smile
I checked this with gnome-disks benchmark, where average read speed from SSD drive is around 270 MB/s... It is around 2.26 Gb/s (much more than theoretical maximum 1.5 Gb/s for SATA I). Similar speed was reached on Lenovo T61 mentioned at the beginning...

So as a summary - don't worry, Dell D630 (with newest Bios A19) has already SATA 3.0 Gb/s unlocked! Smile

Kind Regards!
Greg Wo

Sorry for offtop, but i have Dell D630 with A19 Bios and i have limited SATA to 150 MB/s with my Kingston SSD. Can you do bios-mod for me with unlock SATA2 ?
I have installed XP.

Thanks,
Mike
find
quote


Forum Jump:


Users browsing this thread: 1 Guest(s)