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
Fujitsu Esprimo P5710 - unlock [REQUEST]
Last Post: monkeywrench
Today 12:30 PM
» Replies: 34
» Views: 675
Lenovo Z50-70: CPU update
Last Post: PedroFX
Yesterday 07:20 PM
» Replies: 6
» Views: 165
My Gateway NV57h has an ACER in BIOS - c...
Last Post: drmrsolds
Yesterday 05:42 PM
» Replies: 1
» Views: 2047
Z97-PRO(Wi-Fi ac)/USB 3.1
Last Post: Jedrek
Yesterday 09:49 AM
» Replies: 4
» Views: 2280
[Request] Acer Aspire 3050 unlocked BIOS
Last Post: prowindows62
Yesterday 07:43 AM
» Replies: 0
» Views: 101
HP H-IG41-uATX 45nm microcode update LGA...
Last Post: goldenhill
Yesterday 04:49 AM
» Replies: 58
» Views: 56634
Asus h61m-d & xeon e3-1265l v2
Last Post: DeathBringer
05-03-2024 04:28 PM
» Replies: 3
» Views: 211
[REQUEST] - Acer Swift 3 SF314-41G bios ...
Last Post: ersan
05-03-2024 03:03 PM
» Replies: 1
» Views: 161
[REQUEST] Lenovo G780 advanced menu
Last Post: Dudu2002
05-03-2024 09:41 AM
» Replies: 43
» Views: 17071
[REQUEST] ThinkPad T14 Gen1 Intel BIOS W...
Last Post: SSV CHAOTIC
05-03-2024 05:19 AM
» Replies: 0
» Views: 158
[REQUEST] Lenovo Ideapad 100-14IBD & 100...
Last Post: Dudu2002
05-03-2024 03:48 AM
» Replies: 15
» Views: 6995
[REQUEST] Lenovo IdeaPad U310 & U410 (65...
Last Post: 5CarPileup
05-03-2024 02:04 AM
» Replies: 1767
» Views: 380755
HP Pro 3500: CPU Upgrade
Last Post: DeathBringer
05-03-2024 12:13 AM
» Replies: 20
» Views: 4604
[READ FIRST] Access Advanced settings th...
Last Post: Klinzah
05-02-2024 05:11 PM
» Replies: 424
» Views: 569602
[REQUEST] Asus eeepc 1025C
Last Post: sloseba123
05-02-2024 04:44 PM
» Replies: 87
» Views: 110529
HP EliteBook 840 g2 NVMe
Last Post: x86-64
05-02-2024 06:30 AM
» Replies: 0
» Views: 128
[Request] Dell 7400 2 in 1 Computrace/Ab...
Last Post: Lorand187
05-01-2024 10:34 PM
» Replies: 0
» Views: 182
[REQUEST] Gigabyte B75M-D3H BIOS Unlock
Last Post: topadefir
05-01-2024 12:56 PM
» Replies: 10
» Views: 4073
[REQUEST] Lenovo B590 (H9ETxxWW) Whiteli...
Last Post: samugarob
05-01-2024 10:08 AM
» Replies: 674
» Views: 168907
[REQUEST] Asus GL504GV BIOS Unlock
Last Post: merjeu
05-01-2024 09:28 AM
» Replies: 5
» Views: 1731

[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)