I'm not sure what the problem you are having exactly, but the following works fine:
CREATE TABLE ex (dt VARCHAR(20));
INSERT INTO ex SET dt = '2012-05-10';
SELECT
UNIX_TIMESTAMP('2012-05-10') ex1,
UNIX_TIMESTAMP(dt) ex2,
UNIX_TIMESTAMP(CAST('2012-05-10' AS DATE)) ex3,
UNIX_TIMESTAMP(CAST(dt AS DATE)) ex4
FROM ex;
returns:
+------------+------------+------------+------------+
| ex1 | ex2 | ex3 | ex4 |
+------------+------------+------------+------------+
| 1336633200 | 1336633200 | 1336633200 | 1336633200 |
+------------+------------+------------+------------+
As you can see, there is no need to CAST() if the string is in the form YYYY-MM-DD or YYYY-MM-DD HH:MM:SS, as MySQL implicitly converts strings in this format to DATEs.
See http://www.sqlfiddle.com/#!2/1a215/3