Thanks for help guys! Got the data back - used Recover My Files (
http://www.recovermyfiles.com/)
@ RAID recovery via BIOS - apparently it's not working this way on my new MB (it did work on my previous one)...
Anyway conclusion is: F*CK RAID setup for home use. More pain than it's actually worth.
To have kind of reliable backup I set my 2 disks in a regular mode (no-fucking-RAID). Mounted one as a backup drive in Win7, mounted second drive as a folder on the first one and scheduled once a week powershell script that looks like that:
---
$tmpDate = Get-Date
$tmpDate = $tmpDate.AddDays(-8)
$tmpString = Get-Date $tmpDate -format MM-dd-yyyy
xcopy d:\folder1 d:\!backup\folder1 /E /C /Q /H /R /Y /J /I /D:$tmpString
xcopy d:\folder2 d:\!backup\folder2 /E /C /Q /H /R /Y /J /I /D:$tmpString
---
That's for my collection of gay porn + weekly system drive backup via Win7 built-in "Backup and Restore" (I'm surprised, but it works pretty good)