get parent fields title, content excerpt etc

You can try get_post($post->post_parent) or get_page($post->post_parent) so if you do:

$parent = get_post($post->post_parent);

You can get the title like this:

$parent->post_title;

And anything you want, you can var_dump($parent) to see all the post info you can use.